aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/CoreAppHost.cs
diff options
context:
space:
mode:
authorVasily <just.one.man@yandex.ru>2020-03-05 18:21:27 +0300
committerVasily <just.one.man@yandex.ru>2020-03-05 18:21:27 +0300
commit66e11879efcd2a77476ca9704fa938e89776956c (patch)
tree8c1f03242d03f7c5bcf916439c0a496445d9d3f8 /Jellyfin.Server/CoreAppHost.cs
parentdcf3dbb2507f9e6a213b62b47cf8c327873f78b1 (diff)
Shuffle migrations in a more manageable structure
Diffstat (limited to 'Jellyfin.Server/CoreAppHost.cs')
-rw-r--r--Jellyfin.Server/CoreAppHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/CoreAppHost.cs b/Jellyfin.Server/CoreAppHost.cs
index cd5a2ce85..7f4bd3dea 100644
--- a/Jellyfin.Server/CoreAppHost.cs
+++ b/Jellyfin.Server/CoreAppHost.cs
@@ -69,7 +69,7 @@ namespace Jellyfin.Server
case 1:
Logger.LogWarning("Version check shows Jellyfin was updated: previous version={0}, current version={1}", previousVersion, ApplicationVersion);
- Migrations.Run(this, Logger);
+ Migrations.MigrationRunner.Run(this, Logger);
ConfigurationManager.CommonConfiguration.PreviousVersion = ApplicationVersion;
ConfigurationManager.SaveConfiguration();