mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 22:07:32 -04:00
Fix: (MaM) Improve No results logic (#1578)
This commit is contained in:
parent
3c60159df0
commit
9b50fc40ca
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue