1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00

Nice try uTorrent, you're not Deluge

Fixed: uTorrent error message identity crisis
This commit is contained in:
Mark McDowall 2016-05-02 10:38:59 -07:00
parent 319b4f13b7
commit 2f3bc61af7

View File

@ -193,12 +193,12 @@ public UTorrentResponse ProcessRequest(HttpRequestBuilder requestBuilder, UTorre
} }
else else
{ {
throw new DownloadClientException("Unable to connect to Deluge, please check your settings", ex); throw new DownloadClientException("Unable to connect to uTorrent, please check your settings", ex);
} }
} }
catch (WebException ex) catch (WebException ex)
{ {
throw new DownloadClientException("Unable to connect to Deluge, please check your settings", ex); throw new DownloadClientException("Unable to connect to uTorrent, please check your settings", ex);
} }
return Json.Deserialize<UTorrentResponse>(response.Content); return Json.Deserialize<UTorrentResponse>(response.Content);