aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-08-26 15:32:40 -0400
committerGitHub <noreply@github.com>2016-08-26 15:32:40 -0400
commit22b3b33589667b9fbdc833f16f9a3742167673e5 (patch)
tree7cc371299e2f79171f52c48496a1b287fd5bcb41 /MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs
parentd3ce29b5c3ffad11eef3287a7ebb4c24e779d20f (diff)
parent510fbf139cf1df9ba7659351d96cf74eb92c0b23 (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.cs4
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;
}