mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-23 22:18:39 -05:00
Fix qBittorrent tracker check (#363)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user