diff options
| author | Patrick Barron <barronpm@gmail.com> | 2024-01-17 12:02:12 -0500 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2024-02-02 20:13:24 -0500 |
| commit | efd024bafecd132d7b2f94839e19847411cbf273 (patch) | |
| tree | 159371e9fab867562f8b0d201154094ff9113875 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | 81cf4b6c509fcd2f3669154c051de2a598841dd9 (diff) | |
Use DI for IListingsProvider
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 5870fed76..84189f7f5 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -695,7 +695,7 @@ namespace Emby.Server.Implementations GetExports<IMetadataSaver>(), GetExports<IExternalId>()); - Resolve<ILiveTvManager>().AddParts(GetExports<ILiveTvService>(), GetExports<IListingsProvider>()); + Resolve<ILiveTvManager>().AddParts(GetExports<ILiveTvService>()); Resolve<IMediaSourceManager>().AddParts(GetExports<IMediaSourceProvider>()); } |
