diff options
| author | Patrick Barron <barronpm@gmail.com> | 2024-02-08 12:28:27 -0500 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2024-02-21 09:42:14 -0500 |
| commit | 7baf2d6c6bdaa51c3ecd0d628d36a0dacbd2bc54 (patch) | |
| tree | 3021469111bb58bed39afa3152a6e72dfcfbf68d /src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs | |
| parent | ca1a8ced48747dc3ec90f8d3d350246ad119d45a (diff) | |
Add RecordingsMetadataManager service
Diffstat (limited to 'src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs')
| -rw-r--r-- | src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs b/src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs index 4f05a85e4..d02be31cf 100644 --- a/src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs +++ b/src/Jellyfin.LiveTv/Extensions/LiveTvServiceCollectionExtensions.cs @@ -2,6 +2,7 @@ using Jellyfin.LiveTv.Guide; using Jellyfin.LiveTv.IO; using Jellyfin.LiveTv.Listings; +using Jellyfin.LiveTv.Recordings; using Jellyfin.LiveTv.Timers; using Jellyfin.LiveTv.TunerHosts; using Jellyfin.LiveTv.TunerHosts.HdHomerun; @@ -26,6 +27,7 @@ public static class LiveTvServiceCollectionExtensions services.AddSingleton<LiveTvDtoService>(); services.AddSingleton<TimerManager>(); services.AddSingleton<SeriesTimerManager>(); + services.AddSingleton<RecordingsMetadataManager>(); services.AddSingleton<ILiveTvManager, LiveTvManager>(); services.AddSingleton<IChannelManager, ChannelManager>(); services.AddSingleton<IStreamHelper, StreamHelper>(); |
