diff options
| author | Patrick Barron <barronpm@gmail.com> | 2024-01-17 15:18:15 -0500 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2024-02-08 15:20:46 -0500 |
| commit | 42b052a5a619abf33ceeb4bc4aafcc1d3d52a723 (patch) | |
| tree | 4b6238af1c4fe34c8ae8ae9c556da45c4552b73e /src/Jellyfin.LiveTv/Extensions | |
| parent | 20f05f8103c2f5447c3d2ebd319c9ad31857d42e (diff) | |
Add IListingsManager service
Diffstat (limited to 'src/Jellyfin.LiveTv/Extensions')
| -rw-r--r-- | src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs b/src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs index a07325ad18..e4800a0312 100644 --- a/src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs +++ b/src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs @@ -26,6 +26,7 @@ public static class LiveTvServiceCollectionExtensions services.AddSingleton<IChannelManager, ChannelManager>(); services.AddSingleton<IStreamHelper, StreamHelper>(); services.AddSingleton<ITunerHostManager, TunerHostManager>(); + services.AddSingleton<IListingsManager, ListingsManager>(); services.AddSingleton<IGuideManager, GuideManager>(); services.AddSingleton<ILiveTvService, EmbyTV.EmbyTV>(); |
