use the existing fix

This commit is contained in:
Scott Karbon 2023-08-12 20:39:55 -04:00
parent 6c325d0831
commit 06ff5b2f6d
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings
foreach (var i in programIds)
{
str.Append('"')
.Append(i.AsSpan().Slice(0, 10))
.Append(i[..10])
.Append("\",");
}