From d2f99f133077a1a9f03918ddebe5954d853287de Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Wed, 7 Feb 2018 15:59:14 +0100 Subject: [PATCH] =?UTF-8?q?Fixed:=20Error=20with=20deluge=20when=20it=20do?= =?UTF-8?q?esn=E2=80=99t=20report=20a=20Hash.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #2329 --- src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs b/src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs index a0dc79c15..b46922d7f 100644 --- a/src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs +++ b/src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs @@ -97,7 +97,7 @@ public override IEnumerable GetItems() foreach (var torrent in torrents) { var item = new DownloadClientItem(); - item.DownloadId = torrent.Hash.ToUpper(); + item.DownloadId = torrent.Hash?.ToUpper(); item.Title = torrent.Name; item.Category = Settings.MovieCategory;