mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 06:03:09 +00:00
rarbg: trap error=8 imdbid not found. resolves #12466
This commit is contained in:
parent
550cc54836
commit
c269401175
1 changed files with 1 additions and 0 deletions
|
@ -158,6 +158,7 @@ namespace Jackett.Common.Indexers
|
|||
response = await RequestWithCookiesAndRetryAsync(BuildSearchUrl(query));
|
||||
jsonContent = JObject.Parse(response.ContentString);
|
||||
break;
|
||||
case 8: // imdb not found, see issue #12466
|
||||
case 10: // imdb not found, see issue #1486
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue