Skip to content

Commit 2221f11

Browse files
authored
Fix qBittorrent tracker check (#363)
1 parent 2cc3eb4 commit 2221f11

File tree

1 file changed

+2
-1
lines changed
  • code/backend/Cleanuparr.Infrastructure/Features/DownloadClient/QBittorrent

1 file changed

+2
-1
lines changed

code/backend/Cleanuparr.Infrastructure/Features/DownloadClient/QBittorrent/QBitItem.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Cleanuparr.Domain.Entities;
2+
using Cleanuparr.Infrastructure.Extensions;
23
using Cleanuparr.Infrastructure.Features.DownloadClient.UTorrent.Extensions;
34
using QBittorrent.Client;
45

@@ -91,7 +92,7 @@ public bool IsIgnored(IReadOnlyList<string> ignoredDownloads)
9192
return true;
9293
}
9394

94-
if (Trackers.Any(tracker => tracker.ShouldIgnore(ignoredDownloads)))
95+
if (_trackers.Any(tracker => tracker.ShouldIgnore(ignoredDownloads)))
9596
{
9697
return true;
9798
}

0 commit comments

Comments
 (0)