1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-23 00:07:07 +00:00

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

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)