More descriptive message if indexer connection test was successful but yielded no results.

This commit is contained in:
Taloth Saldono 2019-03-14 21:00:59 +01:00
parent a30d9a1af2
commit d244ed6c64
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ namespace NzbDrone.Core.Indexers
if (releases.Empty())
{
return new ValidationFailure(string.Empty, "No results were returned from your indexer, please check your settings.");
return new ValidationFailure(string.Empty, "Query successful, but no results were returned from your indexer. This may be an issue with the indexer or your indexer category settings.");
}
}
catch (ApiKeyException)