From bb55f30252baff83c3dca5cb5e4ee78e3132cf09 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sun, 23 Jan 2022 15:05:24 -0600 Subject: [PATCH] Fixed: Improved Indexer test failure message when no results are returned (cherry picked from commit 05b1581b7dfa5bc8a2b38a60179e3472c8134f74) --- src/NzbDrone.Core/Indexers/HttpIndexerBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/HttpIndexerBase.cs b/src/NzbDrone.Core/Indexers/HttpIndexerBase.cs index 97f644c95..88a6d8437 100644 --- a/src/NzbDrone.Core/Indexers/HttpIndexerBase.cs +++ b/src/NzbDrone.Core/Indexers/HttpIndexerBase.cs @@ -308,7 +308,7 @@ namespace NzbDrone.Core.Indexers if (releases.Empty()) { - 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."); + return new ValidationFailure(string.Empty, "Query successful, but no results in the configured categories were returned from your indexer. This may be an issue with the indexer or your indexer category settings."); } } catch (ApiKeyException ex)