core: refactor http webclient part 4 #8529 (#7653)

Change byte result name to ContentBytes in preparation for merge
This commit is contained in:
Cory
2020-03-14 18:58:50 -05:00
committed by ngosang
parent 823ed8522c
commit c605c9a7ae
18 changed files with 26 additions and 26 deletions

View File

@@ -235,7 +235,7 @@ namespace Jackett.Common.Utils.Clients
var result = new WebClientByteResult
{
Content = await response.Content.ReadAsByteArrayAsync()
ContentBytes = await response.Content.ReadAsByteArrayAsync()
};
foreach (var header in response.Headers)