1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2024-12-26 17:58:49 +00:00

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

This reverts commit abf85fe8fe.
This commit is contained in:
Garfield69 2020-06-13 07:17:19 +12:00
parent abf85fe8fe
commit 1e03a14e81

View file

@ -206,6 +206,7 @@ namespace Jackett.Common.Indexers
{ "format", "json_extended" },
{ "app_id", _appId },
{ "limit", "100" },
{ "ranked", "0" },
{ "sort", _sort }
};
@ -228,7 +229,6 @@ 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);
}