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 abb8526b76
commit 4dd6da4f6e
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)