Explorar el Código

limit guide date picker to actual guide days

Luke Pulverenti hace 8 años
padre
commit
e4ceec749d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Emby.Server.Implementations/LiveTv/LiveTvManager.cs

+ 1 - 1
Emby.Server.Implementations/LiveTv/LiveTvManager.cs

@@ -2647,7 +2647,7 @@ namespace Emby.Server.Implementations.LiveTv
         public GuideInfo GetGuideInfo()
         {
             var startDate = DateTime.UtcNow;
-            var endDate = startDate.AddDays(14);
+            var endDate = startDate.AddDays(GetGuideDays());
 
             return new GuideInfo
             {