mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
rarbg: trap error=8 imdbid not found. resolves #12466
This commit is contained in:
@@ -158,6 +158,7 @@ namespace Jackett.Common.Indexers
|
|||||||
response = await RequestWithCookiesAndRetryAsync(BuildSearchUrl(query));
|
response = await RequestWithCookiesAndRetryAsync(BuildSearchUrl(query));
|
||||||
jsonContent = JObject.Parse(response.ContentString);
|
jsonContent = JObject.Parse(response.ContentString);
|
||||||
break;
|
break;
|
||||||
|
case 8: // imdb not found, see issue #12466
|
||||||
case 10: // imdb not found, see issue #1486
|
case 10: // imdb not found, see issue #1486
|
||||||
case 20: // no results found
|
case 20: // no results found
|
||||||
// the api returns "no results" in some valid queries. we do one retry on this case but we can't do more
|
// the api returns "no results" in some valid queries. we do one retry on this case but we can't do more
|
||||||
|
Reference in New Issue
Block a user