aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-08-26 15:29:28 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-08-26 15:29:28 -0400
commit510fbf139cf1df9ba7659351d96cf74eb92c0b23 (patch)
treece984bef2746bdfa2677be96446dbd91d30e8888 /MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs
parent4964899fa3d074c4afcaf21d6202cf93ab06766d (diff)
fix repeated guide refreshes
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;
}