mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-17 21:44:48 -04:00
Fix: (MaM) Improve No results logic (#1578)
This commit is contained in:
@@ -378,7 +378,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
||||
var jsonResponse = JsonConvert.DeserializeObject<MyAnonamouseResponse>(indexerResponse.Content);
|
||||
|
||||
var error = jsonResponse.Error;
|
||||
if (error != null && error == "Nothing returned, out of 0")
|
||||
if (error is "Nothing returned, out of 0" or "Nothing returned, out of 1")
|
||||
{
|
||||
return torrentInfos.ToArray();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user