aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-09-07 01:48:14 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-09-07 01:48:14 -0400
commit4e0adb17e74a252f3168070721854a03ecc9d07b (patch)
tree843b44eab384400547b540946c45ad2b3a280d9d /MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs
parent2a6a6d6911527a0ff5d0ce94d363d6faff5ed98d (diff)
update dialogs
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs')
-rw-r--r--MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs b/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs
index de898e66cb..d5fe9707c8 100644
--- a/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs
+++ b/MediaBrowser.Server.Startup.Common/Migrations/UpdateLevelMigration.cs
@@ -42,12 +42,6 @@ namespace MediaBrowser.Server.Startup.Common.Migrations
{
var updateLevel = _config.Configuration.SystemUpdateLevel;
- if (updateLevel == PackageVersionClass.Dev)
- {
- // It's already dev, there's nothing to check
- return;
- }
-
await CheckVersion(currentVersion, updateLevel, CancellationToken.None).ConfigureAwait(false);
}
catch