aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Extensions
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/Extensions
parent9d1c4ea169a15d580923aefb0ec43c2b6be5b3a6 (diff)
Fixed migration runner and added docs for adding migrations
Diffstat (limited to 'Jellyfin.Server/Extensions')
-rw-r--r--Jellyfin.Server/Extensions/WebHostBuilderExtensions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Extensions/WebHostBuilderExtensions.cs b/Jellyfin.Server/Extensions/WebHostBuilderExtensions.cs
index 6b95770ed..7695c0d9e 100644
--- a/Jellyfin.Server/Extensions/WebHostBuilderExtensions.cs
+++ b/Jellyfin.Server/Extensions/WebHostBuilderExtensions.cs
@@ -85,6 +85,6 @@ public static class WebHostBuilderExtensions
logger.LogInformation("Kestrel listening to unix socket {SocketPath}", socketPath);
}
})
- .UseStartup(_ => new Startup(appHost));
+ .UseStartup(context => new Startup(appHost, context.Configuration));
}
}