ソースを参照

Move RecordingHelper to recordings folder

Patrick Barron 1 年間 前
コミット
d96fec2330

+ 1 - 3
src/Jellyfin.LiveTv/EmbyTV/RecordingHelper.cs → src/Jellyfin.LiveTv/Recordings/RecordingHelper.cs

@@ -1,11 +1,9 @@
-#pragma warning disable CS1591
-
 using System;
 using System.Globalization;
 using System.Text;
 using MediaBrowser.Controller.LiveTv;
 
-namespace Jellyfin.LiveTv.EmbyTV
+namespace Jellyfin.LiveTv.Recordings
 {
     internal static class RecordingHelper
     {

+ 1 - 1
src/Jellyfin.LiveTv/Timers/TimerManager.cs

@@ -7,7 +7,7 @@ using System.IO;
 using System.Linq;
 using System.Threading;
 using Jellyfin.Data.Events;
-using Jellyfin.LiveTv.EmbyTV;
+using Jellyfin.LiveTv.Recordings;
 using MediaBrowser.Common.Configuration;
 using MediaBrowser.Controller.LiveTv;
 using MediaBrowser.Model.LiveTv;

+ 1 - 1
tests/Jellyfin.LiveTv.Tests/RecordingHelperTests.cs

@@ -1,5 +1,5 @@
 using System;
-using Jellyfin.LiveTv.EmbyTV;
+using Jellyfin.LiveTv.Recordings;
 using MediaBrowser.Controller.LiveTv;
 using Xunit;