mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Fix: Downloading of torrent file don't follow redirect (#2196)
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
---
|
---
|
||||||
site: nnm-club
|
site: nnm-club
|
||||||
name: NoName Club
|
name: NoName Club
|
||||||
description: "NoName Club (NNM-Club) is a RUSSIAN Semi-Private Torrent Tracker for 0DAY / GENERAL"
|
description: "NoName Club (NNM-Club) is a RUSSIAN Semi-Private Torrent Tracker for 0DAY / GENERAL"
|
||||||
|
@@ -298,6 +298,10 @@ namespace Jackett.Indexers
|
|||||||
.Replace(")", "%29")
|
.Replace(")", "%29")
|
||||||
.Replace("'", "%27");
|
.Replace("'", "%27");
|
||||||
var response = await RequestBytesWithCookiesAndRetry(requestLink, null, method, requestLink);
|
var response = await RequestBytesWithCookiesAndRetry(requestLink, null, method, requestLink);
|
||||||
|
if (response.IsRedirect)
|
||||||
|
{
|
||||||
|
await FollowIfRedirect(response);
|
||||||
|
}
|
||||||
if (response.Status != System.Net.HttpStatusCode.OK && response.Status != System.Net.HttpStatusCode.Continue && response.Status != System.Net.HttpStatusCode.PartialContent)
|
if (response.Status != System.Net.HttpStatusCode.OK && response.Status != System.Net.HttpStatusCode.Continue && response.Status != System.Net.HttpStatusCode.PartialContent)
|
||||||
{
|
{
|
||||||
logger.Error("Failed download cookies: " + this.CookieHeader);
|
logger.Error("Failed download cookies: " + this.CookieHeader);
|
||||||
|
Reference in New Issue
Block a user