diff --git a/code/backend/Cleanuparr.Infrastructure/Features/DownloadClient/QBittorrent/QBitService.cs b/code/backend/Cleanuparr.Infrastructure/Features/DownloadClient/QBittorrent/QBitService.cs index d9b84378..a8f93b37 100644 --- a/code/backend/Cleanuparr.Infrastructure/Features/DownloadClient/QBittorrent/QBitService.cs +++ b/code/backend/Cleanuparr.Infrastructure/Features/DownloadClient/QBittorrent/QBitService.cs @@ -148,7 +148,7 @@ public partial class QBitService : DownloadService, IQBitService private async Task> GetTrackersAsync(string hash) { return (await _client.GetTorrentTrackersAsync(hash)) - .Where(x => x.Url.Contains("**")) + .Where(x => !x.Url.Contains("**")) .ToList(); }