We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc3eb4 commit 2221f11Copy full SHA for 2221f11
code/backend/Cleanuparr.Infrastructure/Features/DownloadClient/QBittorrent/QBitItem.cs
@@ -1,4 +1,5 @@
1
using Cleanuparr.Domain.Entities;
2
+using Cleanuparr.Infrastructure.Extensions;
3
using Cleanuparr.Infrastructure.Features.DownloadClient.UTorrent.Extensions;
4
using QBittorrent.Client;
5
@@ -91,7 +92,7 @@ public bool IsIgnored(IReadOnlyList<string> ignoredDownloads)
91
92
return true;
93
}
94
- if (Trackers.Any(tracker => tracker.ShouldIgnore(ignoredDownloads)))
95
+ if (_trackers.Any(tracker => tracker.ShouldIgnore(ignoredDownloads)))
96
{
97
98
0 commit comments