rarbg: do not use ranked=0 with mode=list. resolves #8945

This commit is contained in:
Garfield69 2020-06-12 08:40:47 +12:00
parent 0e73151338
commit abf85fe8fe
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,6 @@ namespace Jackett.Common.Indexers
{ "format", "json_extended" },
{ "app_id", _appId },
{ "limit", "100" },
{ "ranked", "0" },
{ "sort", _sort }
};
@ -229,6 +228,7 @@ namespace Jackett.Common.Indexers
{
// ignore ' (e.g. search for america's Next Top Model)
searchString = searchString.Replace("'", "");
qc.Add("ranked", "0");
qc.Add("mode", "search");
qc.Add("search_string", searchString);
}