Fix qBittorrent tracker check (#363)

This commit is contained in:
Flaminel
2025-11-09 19:03:48 +02:00
committed by GitHub
parent 2cc3eb4ebb
commit 2221f118bb

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;
}