Browse Source

Revert unintended change in SchedulesDirect

Patrick Barron 4 years ago
parent
commit
544e059395
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Emby.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs

+ 1 - 1
Emby.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs

@@ -462,7 +462,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings
             foreach (ReadOnlySpan<char> i in programIds)
             {
                 str.Append('"')
-                    .Append(i[..10])
+                    .Append(i.Slice(0, 10))
                     .Append("\",");
             }