1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Warning message when BTN API throw internal server error

This commit is contained in:
Taloth Saldono
2015-10-20 19:31:40 +02:00
parent 9cc8ed545f
commit e8d6d62fba
2 changed files with 15 additions and 3 deletions
@@ -32,7 +32,13 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
break;
}
var jsonResponse = new HttpResponse<JsonRpcResponse<BroadcastheNetTorrents>>(indexerResponse.HttpResponse).Resource;
if (indexerResponse.Content == "Query execution was interrupted")
{
throw new IndexerException(indexerResponse, "Indexer API returned an internal server error");
}
JsonRpcResponse<BroadcastheNetTorrents> jsonResponse = new HttpResponse<JsonRpcResponse<BroadcastheNetTorrents>>(indexerResponse.HttpResponse).Resource;
if (jsonResponse.Error != null || jsonResponse.Result == null)
{