Remove all using for HttpClient

This commit is contained in:
crobibero
2020-08-16 09:47:08 -06:00
parent 97fd11c9a4
commit 8ddcd12348
4 changed files with 4 additions and 4 deletions

View File

@@ -295,7 +295,7 @@ namespace Jellyfin.Api.Controllers
{
StreamingHelpers.AddDlnaHeaders(state, Response.Headers, true, startTimeTicks, Request, _dlnaManager);
using var httpClient = _httpClientFactory.CreateClient();
var httpClient = _httpClientFactory.CreateClient();
return await FileStreamResponseHelpers.GetStaticRemoteStreamResult(state, isHeadRequest, this, httpClient).ConfigureAwait(false);
}