Fix early filestream close

This commit is contained in:
crobibero
2020-10-29 13:56:29 -06:00
parent 429e59fb81
commit 3568c5f39b
2 changed files with 4 additions and 4 deletions

View File

@@ -55,7 +55,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
var typeName = GetType().Name;
Logger.LogInformation("Opening " + typeName + " Live stream from {0}", url);
using var response = await _httpClientFactory.CreateClient(NamedClient.Default)
var response = await _httpClientFactory.CreateClient(NamedClient.Default)
.GetAsync(url, HttpCompletionOption.ResponseHeadersRead, CancellationToken.None)
.ConfigureAwait(false);