mirror of
https://github.com/Jackett/Jackett
synced 2025-02-23 23:00:51 +00:00
XSpeeds: disable RSS
This commit is contained in:
parent
119c7b2e34
commit
9a417590b6
1 changed files with 7 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue