Fixed: Refactored the Indexer architecture to support non-rss indexers.

This commit is contained in:
Taloth Saldono
2014-09-07 13:44:24 +02:00
parent 22c9bc402f
commit 5e62c2335f
57 changed files with 2196 additions and 1470 deletions

View File

@@ -14,6 +14,12 @@ namespace NzbDrone.Common.Http
Response = response;
}
public HttpException(HttpResponse response)
: this(response.Request, response)
{
}
public override string ToString()
{
if (Response != null)