aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-01-27 17:20:14 +0000
committerJPVenson <github@jpb.email>2025-01-27 17:20:14 +0000
commit844646e2fe6d726edc8e086cc465396303d24f29 (patch)
treeb5e21a53df12d963a93047f9b1d959248cf18a5d /Jellyfin.Server/Program.cs
parent9d1c4ea169a15d580923aefb0ec43c2b6be5b3a6 (diff)
Fixed migration runner and added docs for adding migrations
Diffstat (limited to 'Jellyfin.Server/Program.cs')
-rw-r--r--Jellyfin.Server/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs
index a6270aa93..fd23b7e25 100644
--- a/Jellyfin.Server/Program.cs
+++ b/Jellyfin.Server/Program.cs
@@ -157,7 +157,7 @@ namespace Jellyfin.Server
// Re-use the host service provider in the app host since ASP.NET doesn't allow a custom service collection.
appHost.ServiceProvider = host.Services;
- await appHost.InitializeServices().ConfigureAwait(false);
+ await appHost.InitializeServices(startupConfig).ConfigureAwait(false);
Migrations.MigrationRunner.Run(appHost, _loggerFactory);
try