mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 07:01:52 +02:00
Use ConfigureAwait in M3uParser
This commit is contained in:
parent
42c95da6b0
commit
4ec32b71f5
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue