mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Use ConfigureAwait in M3uParser
This commit is contained in:
parent
42c95da6b0
commit
4ec32b71f5
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user