1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-22 07:42:28 +00:00

New: Ignore Deluge torrents without a title

(cherry picked from commit a0d29331341320268552660658b949179c963793)
This commit is contained in:
Mark McDowall 2024-06-25 15:52:12 -07:00 committed by Bogdan
parent e8ab1f842b
commit d602f38b7d

View file

@ -122,14 +122,23 @@ public override IEnumerable<DownloadClientItem> GetItems()
}
var items = new List<DownloadClientItem>();
var ignoredCount = 0;
foreach (var torrent in torrents)
{
if (torrent.Hash == null)
// Silently ignore torrents with no hash
if (torrent.Hash.IsNullOrWhiteSpace())
{
continue;
}
// Ignore torrents without a name, but track to log a single warning for all invalid torrents.
if (torrent.Name.IsNullOrWhiteSpace())
{
ignoredCount++;
continue;
}
var item = new DownloadClientItem();
item.DownloadId = torrent.Hash.ToUpper();
item.Title = torrent.Name;
@ -187,6 +196,11 @@ public override IEnumerable<DownloadClientItem> GetItems()
items.Add(item);
}
if (ignoredCount > 0)
{
_logger.Warn("{0} torrent(s) were ignored becuase they did not have a title, check Deluge and remove any invalid torrents");
}
return items;
}