mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-14 16:42:24 +00:00
Use ConfigureAwait in M3uParser
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user