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 @@ namespace NzbDrone.Core.Download.Clients.Deluge 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;