core: fix cookie login message (#8375)

Before this change the message was:
Your cookie did not work: Your cookie did not work
Now:
Your cookie did not work: Found 0 results in the tracker
This commit is contained in:
Diego Heras
2020-04-26 20:18:40 +02:00
committed by GitHub
parent d9b19719e4
commit 9fa9494d6e
11 changed files with 11 additions and 11 deletions

View File

@@ -110,7 +110,7 @@ namespace Jackett.Common.Indexers.Abstract
var results = await PerformQuery(new TorznabQuery());
if (!results.Any())
{
throw new Exception("Your cookie did not work");
throw new Exception("Found 0 results in the tracker");
}
IsConfigured = true;