From 31f285480ae3b4573d2ddc18b50a8ed8b4160a41 Mon Sep 17 00:00:00 2001 From: Patrick Barron Date: Thu, 15 Feb 2024 12:53:55 -0500 Subject: [PATCH] Move RecordingNotifier to recordings folder --- Jellyfin.Server/Startup.cs | 2 +- src/Jellyfin.LiveTv/{ => Recordings}/RecordingNotifier.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/Jellyfin.LiveTv/{ => Recordings}/RecordingNotifier.cs (99%) diff --git a/Jellyfin.Server/Startup.cs b/Jellyfin.Server/Startup.cs index 558ad5b7bd..51b34fd158 100644 --- a/Jellyfin.Server/Startup.cs +++ b/Jellyfin.Server/Startup.cs @@ -6,9 +6,9 @@ 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; diff --git a/src/Jellyfin.LiveTv/RecordingNotifier.cs b/src/Jellyfin.LiveTv/Recordings/RecordingNotifier.cs similarity index 99% rename from src/Jellyfin.LiveTv/RecordingNotifier.cs rename to src/Jellyfin.LiveTv/Recordings/RecordingNotifier.cs index 226d525e71..e63afa6260 100644 --- a/src/Jellyfin.LiveTv/RecordingNotifier.cs +++ b/src/Jellyfin.LiveTv/Recordings/RecordingNotifier.cs @@ -11,7 +11,7 @@ using MediaBrowser.Model.Session; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; -namespace Jellyfin.LiveTv +namespace Jellyfin.LiveTv.Recordings { /// /// responsible for notifying users when a LiveTV recording is completed.