From 2f3bc61af75e7de9e54c0181490be510aa88c9e5 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 2 May 2016 10:38:59 -0700 Subject: [PATCH] Nice try uTorrent, you're not Deluge Fixed: uTorrent error message identity crisis --- src/NzbDrone.Core/Download/Clients/uTorrent/UTorrentProxy.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/uTorrent/UTorrentProxy.cs b/src/NzbDrone.Core/Download/Clients/uTorrent/UTorrentProxy.cs index ffb90bdec..1ca49bfec 100644 --- a/src/NzbDrone.Core/Download/Clients/uTorrent/UTorrentProxy.cs +++ b/src/NzbDrone.Core/Download/Clients/uTorrent/UTorrentProxy.cs @@ -193,12 +193,12 @@ namespace NzbDrone.Core.Download.Clients.UTorrent } 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) { - 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(response.Content);