From 53fc5eff3be39abbdf9cfbaa201913d0195a205c Mon Sep 17 00:00:00 2001 From: Flaminel Date: Fri, 10 Apr 2026 21:00:28 +0300 Subject: [PATCH] Fix qBittorrent tracker fetching (#555) --- .../Features/DownloadClient/QBittorrent/QBitService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }