PreToMe: automatic re-login is necessary

This commit is contained in:
kaso17 2016-12-10 22:32:41 +01:00
parent 55f2951694
commit c40c176b72
1 changed files with 6 additions and 0 deletions

View File

@ -270,6 +270,12 @@ namespace Jackett.Indexers
var response = await RequestStringWithCookiesAndRetry(queryUrl);
if (response.IsRedirect)
{
await ApplyConfiguration(null);
response = await RequestStringWithCookiesAndRetry(queryUrl);
}
try
{
CQ dom = response.Content;