Add HttpCompletionOption.ResponseHeadersRead to the buffering option to avoid potentially having 2 copies in memory

pull/1552/head
Claus Vium 5 years ago
parent 886c88576c
commit dadfc09c01

@ -301,7 +301,7 @@ namespace Emby.Server.Implementations.HttpClientManager
};
}
using (var response = await client.SendAsync(httpWebRequest, options.CancellationToken).ConfigureAwait(false))
using (var response = await client.SendAsync(httpWebRequest, HttpCompletionOption.ResponseHeadersRead, options.CancellationToken).ConfigureAwait(false))
{
await EnsureSuccessStatusCode(response, options).ConfigureAwait(false);

Loading…
Cancel
Save