aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.LiveTv/Extensions
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2024-01-17 15:18:15 -0500
committerPatrick Barron <barronpm@gmail.com>2024-02-08 15:20:46 -0500
commit42b052a5a619abf33ceeb4bc4aafcc1d3d52a723 (patch)
tree4b6238af1c4fe34c8ae8ae9c556da45c4552b73e /src/Jellyfin.LiveTv/Extensions
parent20f05f8103c2f5447c3d2ebd319c9ad31857d42e (diff)
Add IListingsManager service
Diffstat (limited to 'src/Jellyfin.LiveTv/Extensions')
-rw-r--r--src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs1
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>();