diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-08-26 15:32:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-26 15:32:40 -0400 |
| commit | 22b3b33589667b9fbdc833f16f9a3742167673e5 (patch) | |
| tree | 7cc371299e2f79171f52c48496a1b287fd5bcb41 /MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs | |
| parent | d3ce29b5c3ffad11eef3287a7ebb4c24e779d20f (diff) | |
| parent | 510fbf139cf1df9ba7659351d96cf74eb92c0b23 (diff) | |
Merge pull request #2104 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs b/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs index 6d22aaed0..5212b8ac3 100644 --- a/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs +++ b/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs @@ -69,7 +69,7 @@ namespace MediaBrowser.Server.Startup.Common.Migrations Version version; if (Version.TryParse(release.tag_name, out version)) { - if (currentVersion >= version) + if (currentVersion > version) { newUpdateLevel = PackageVersionClass.Beta; } @@ -83,7 +83,7 @@ namespace MediaBrowser.Server.Startup.Common.Migrations Version version; if (Version.TryParse(release.tag_name, out version)) { - if (currentVersion >= version) + if (currentVersion > version) { newUpdateLevel = PackageVersionClass.Dev; } |
