cinecalidad: fix download link (#10582)

This commit is contained in:
Diego Heras 2020-12-20 16:07:55 +01:00 committed by GitHub
parent ebd4540fbf
commit 6225b03e0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -142,6 +142,8 @@ namespace Jackett.Common.Indexers
var linkParts = protectedLink.Split('=');
protectedLink = protectedLink.Replace(linkParts[0] + "=", "");
}
if (protectedLink.StartsWith("/"))
protectedLink = SiteLink + protectedLink.TrimStart('/');
results = await RequestWithCookiesAsync(protectedLink);
dom = parser.ParseDocument(results.ContentString);