Use ConfigureAwait in M3uParser

This commit is contained in:
Patrick Barron 2023-12-05 12:26:29 -05:00
parent 42c95da6b0
commit 4ec32b71f5
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
.ConfigureAwait(false);
response.EnsureSuccessStatusCode();
return await response.Content.ReadAsStreamAsync(cancellationToken);
return await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
}
private async Task<List<ChannelInfo>> GetChannelsAsync(TextReader reader, string channelIdPrefix, string tunerHostId)