diff options
| author | JPVenson <github@jpb.email> | 2025-07-15 03:39:43 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-14 18:39:43 -0600 |
| commit | 310a54f09096774aead30cac7031ea91e4dca7c1 (patch) | |
| tree | 99fa9ee7281fbc4881dd0f68c9c791c446875556 /Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs | |
| parent | e9d92bdcb0502e241461a4fa6395fbdf7401f8de (diff) | |
Allow loading of Database options for DB provider (#14466)
Diffstat (limited to 'Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs')
| -rw-r--r-- | Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs b/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs index 63c80634f..932f9d625 100644 --- a/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs +++ b/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs @@ -139,7 +139,7 @@ public static class ServiceCollectionExtensions serviceCollection.AddPooledDbContextFactory<JellyfinDbContext>((serviceProvider, opt) => { var provider = serviceProvider.GetRequiredService<IJellyfinDatabaseProvider>(); - provider.Initialise(opt); + provider.Initialise(opt, efCoreConfiguration); var lockingBehavior = serviceProvider.GetRequiredService<IEntityFrameworkCoreLockingBehavior>(); lockingBehavior.Initialise(opt); }); |
