core: refactor http webclient part 10 #8529 (#7729)

Move WebResult String and Byte properties to base class
This commit is contained in:
Cory
2020-03-20 14:22:56 -05:00
committed by ngosang
parent c8b91bece6
commit 3a0ece162f
25 changed files with 67 additions and 53 deletions

View File

@@ -219,7 +219,7 @@ namespace Jackett.Common.Indexers
return title;
}
private bool IsSessionIsClosed(WebClientStringResult result)
private bool IsSessionIsClosed(BaseWebResult result)
{
return result.IsRedirect && result.RedirectingTo.Contains("login.php");
}