aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2024-02-25 22:01:28 +0100
committerGitHub <noreply@github.com>2024-02-25 22:01:28 +0100
commitc72bd8a09292e8ee4a42abbdcc1df7bf283a6d55 (patch)
treee738a4f1b45693fe71dafb03558afc84c6914734 /Jellyfin.Server
parent43b1e12166c18561685824de0b699cc25d1ef0e9 (diff)
parentb5a3c71b3aba0d8a1e1e65f7d07e1caae43856e2 (diff)
Merge pull request #11054 from barronpm/livetv-mediasourceprovider
LiveTV MediaSourceProvider refactor
Diffstat (limited to 'Jellyfin.Server')
-rw-r--r--Jellyfin.Server/Startup.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Jellyfin.Server/Startup.cs b/Jellyfin.Server/Startup.cs
index 558ad5b7bd..e9fb3e4c27 100644
--- a/Jellyfin.Server/Startup.cs
+++ b/Jellyfin.Server/Startup.cs
@@ -6,9 +6,8 @@ using System.Net.Mime;
using System.Text;
using Emby.Server.Implementations.EntryPoints;
using Jellyfin.Api.Middleware;
-using Jellyfin.LiveTv;
-using Jellyfin.LiveTv.EmbyTV;
using Jellyfin.LiveTv.Extensions;
+using Jellyfin.LiveTv.Recordings;
using Jellyfin.MediaEncoding.Hls.Extensions;
using Jellyfin.Networking;
using Jellyfin.Networking.HappyEyeballs;
@@ -128,7 +127,7 @@ namespace Jellyfin.Server
services.AddHlsPlaylistGenerator();
services.AddLiveTvServices();
- services.AddHostedService<LiveTvHost>();
+ services.AddHostedService<RecordingsHost>();
services.AddHostedService<AutoDiscoveryHost>();
services.AddHostedService<PortForwardingHost>();
services.AddHostedService<NfoUserDataSaver>();