More robust testing/verification for indexers

This commit is contained in:
zone117x
2015-04-19 16:01:42 -06:00
parent c351cebdfc
commit ac003e7a78
9 changed files with 10 additions and 56 deletions

View File

@@ -97,14 +97,6 @@ namespace Jackett.Indexers
}
}
public async Task VerifyConnection()
{
var browseQuery = new TorznabQuery();
var results = await PerformQuery(browseQuery);
if (results.Length == 0)
throw new Exception("Found no results while trying to browse this tracker");
}
public event Action<IndexerInterface, JToken> OnSaveConfigurationRequested;
public bool IsConfigured { get; private set; }