This commit is contained in:
Garfield69 2022-05-07 08:35:12 +12:00
parent 3b4f594bc8
commit 626f03707f
1 changed files with 1 additions and 1 deletions

View File

@ -1402,7 +1402,7 @@ namespace Jackett.Common.Indexers
if (response.Status == HttpStatusCode.OK
&& SearchPath.Response != null
&& SearchPath.Response.NoResultsMessage != null
&& (results.Contains(SearchPath.Response.NoResultsMessage) || (SearchPath.Response.NoResultsMessage == String.Empty && results == String.Empty)))
&& (SearchPath.Response.NoResultsMessage != String.Empty && results.Contains(SearchPath.Response.NoResultsMessage) || (SearchPath.Response.NoResultsMessage == String.Empty && results == String.Empty)))
continue;
var parsedJson = JToken.Parse(results);
if (parsedJson == null)