From 9a417590b61054aa4f4dc1b98efd147f53ad2a05 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Tue, 15 Jan 2019 13:20:15 +0100 Subject: [PATCH] XSpeeds: disable RSS --- src/Jackett.Common/Indexers/XSpeeds.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Jackett.Common/Indexers/XSpeeds.cs b/src/Jackett.Common/Indexers/XSpeeds.cs index 75b342119..b3dc7b88b 100644 --- a/src/Jackett.Common/Indexers/XSpeeds.cs +++ b/src/Jackett.Common/Indexers/XSpeeds.cs @@ -210,7 +210,10 @@ namespace Jackett.Common.Indexers var prevCook = CookieHeader + ""; // If we have no query use the RSS Page as their server is slow enough at times! - if (query.IsTest || string.IsNullOrWhiteSpace(searchString)) + // ~15.01.2019 they removed the description tag making the RSS feed almost useless, we don't use it for now. See #4458 + // if (false && query.IsTest || string.IsNullOrWhiteSpace(searchString)) + /* + if (false) { var rssPage = await RequestStringWithCookiesAndRetry(string.Format(RSSUrl, configData.RSSKey.Value)); try @@ -264,7 +267,9 @@ namespace Jackett.Common.Indexers throw ex; } } - if (query.IsTest || !string.IsNullOrWhiteSpace(searchString)) + */ + //if (query.IsTest || !string.IsNullOrWhiteSpace(searchString)) + if (true) { if (searchString.Length < 3 && !query.IsTest) {