diff options
| author | JPVenson <github@jpb.email> | 2025-02-19 18:21:23 +0000 |
|---|---|---|
| committer | JPVenson <github@jpb.email> | 2025-02-19 18:21:23 +0000 |
| commit | ddc20b74bf2eddd686c14c084260ca457011f8be (patch) | |
| tree | 59d6f0ffb40b2b09b1649199730e2022145a8db7 /Jellyfin.Server.Implementations/Extensions | |
| parent | 8b07c1f53ddf491499005b9e0da9cf1bbe93cf9a (diff) | |
Removed pgsql from refactor
Diffstat (limited to 'Jellyfin.Server.Implementations/Extensions')
| -rw-r--r-- | Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs b/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs index 1dd7cfe04..9bf67118d 100644 --- a/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs +++ b/Jellyfin.Server.Implementations/Extensions/ServiceCollectionExtensions.cs @@ -1,9 +1,6 @@ using System; using System.Collections.Generic; -using System.IO; -using System.Linq; using System.Reflection; -using Jellyfin.Database.Providers.PgSql; using Jellyfin.Database.Providers.SqLite; using Jellyfin.Server.Implementations.DatabaseConfiguration; using MediaBrowser.Common.Configuration; @@ -23,7 +20,6 @@ public static class ServiceCollectionExtensions private static IEnumerable<Type> DatabaseProviderTypes() { yield return typeof(SqliteDatabaseProvider); - yield return typeof(PgSqlDatabaseProvider); } private static IDictionary<string, JellyfinDbProviderFactory> GetSupportedDbProviders() |
