Added: Missing error check when adding a magnet link to deluge

pull/250/head
Qstick 7 years ago
parent 4bb0735565
commit 97d4063cf3

@ -35,6 +35,11 @@ namespace NzbDrone.Core.Download.Clients.Deluge
{
var actualHash = _proxy.AddTorrentFromMagnet(magnetLink, Settings);
if (actualHash.IsNullOrWhiteSpace())
{
throw new DownloadClientException("Deluge failed to add magnet " + magnetLink);
}
if (!Settings.MusicCategory.IsNullOrWhiteSpace())
{
_proxy.SetLabel(actualHash, Settings.MusicCategory, Settings);

Loading…
Cancel
Save