Browse Source

Backport pull request #11629 from jellyfin/release-10.9.z

Fix missing filename for timer

Original-merge: 3f760e6685b18a2cbc689f16300961c185d13375

Merged-by: crobibero <cody@robibe.ro>

Backported-by: Joshua M. Boniface <joshua@boniface.me>
gnattu 1 year ago
parent
commit
9b978578ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Jellyfin.LiveTv/Timers/TimerManager.cs

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

@@ -22,7 +22,7 @@ namespace Jellyfin.LiveTv.Timers
         public TimerManager(ILogger<TimerManager> logger, IConfigurationManager config)
             : base(
                 logger,
-                Path.Combine(config.CommonApplicationPaths.DataPath, "livetv"),
+                Path.Combine(config.CommonApplicationPaths.DataPath, "livetv/timers.json"),
                 (r1, r2) => string.Equals(r1.Id, r2.Id, StringComparison.OrdinalIgnoreCase))
         {
         }