Browse Source

Escaping & on xmltv file (#1772)

pull/1773/head
Sylvain 11 months ago committed by GitHub
parent
commit
85029cbbcd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      ErsatzTV.Application/Channels/Queries/GetChannelGuideHandler.cs

2
ErsatzTV.Application/Channels/Queries/GetChannelGuideHandler.cs

@ -41,7 +41,7 @@ public class GetChannelGuideHandler : IRequestHandler<GetChannelGuide, Either<Ba @@ -41,7 +41,7 @@ public class GetChannelGuideHandler : IRequestHandler<GetChannelGuide, Either<Ba
var accessTokenUri = $"?v={mtime}";
if (!string.IsNullOrWhiteSpace(request.AccessToken))
{
accessTokenUri += $"&access_token={request.AccessToken}";
accessTokenUri += $"&amp;access_token={request.AccessToken}";
}
string channelsFragment = await File.ReadAllTextAsync(channelsFile, Encoding.UTF8, cancellationToken);

Loading…
Cancel
Save