Compare commits

...

1 Commits

Author SHA1 Message Date
Flaminel
2221f118bb Fix qBittorrent tracker check (#363) 2025-11-09 19:03:48 +02:00

View File

@@ -1,4 +1,5 @@
using Cleanuparr.Domain.Entities;
using Cleanuparr.Infrastructure.Extensions;
using Cleanuparr.Infrastructure.Features.DownloadClient.UTorrent.Extensions;
using QBittorrent.Client;
@@ -91,7 +92,7 @@ public sealed class QBitItem : ITorrentItem
return true;
}
if (Trackers.Any(tracker => tracker.ShouldIgnore(ignoredDownloads)))
if (_trackers.Any(tracker => tracker.ShouldIgnore(ignoredDownloads)))
{
return true;
}