mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
rarbg: handle error code 14 & 9 (tmdb & imdb not found) (#13569)
This commit is contained in:
@@ -162,7 +162,9 @@ namespace Jackett.Common.Indexers
|
||||
case 5: // Too many requests per second. Maximum requests allowed are 1req/2sec Please try again later!
|
||||
return await PerformQueryWithRetry(query, false);
|
||||
case 8: // imdb not found, see issue #12466
|
||||
case 9: // imdb not found, see Radarr #1845
|
||||
case 10: // imdb not found, see issue #1486
|
||||
case 14: // tmdb not found, see Radarr #7625
|
||||
case 20: // no results found
|
||||
if (jsonContent.ContainsKey("rate_limit"))
|
||||
{
|
||||
|
Reference in New Issue
Block a user