From c39fb4fe6f0ed5e1dc2aa33f4455a4d0c760063b Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sun, 15 Dec 2024 13:59:21 +0200 Subject: [PATCH] Fix typo about download clients comment --- src/NzbDrone.Core/Download/DownloadClientProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/DownloadClientProvider.cs b/src/NzbDrone.Core/Download/DownloadClientProvider.cs index 7bb4c866b..5a82abb11 100644 --- a/src/NzbDrone.Core/Download/DownloadClientProvider.cs +++ b/src/NzbDrone.Core/Download/DownloadClientProvider.cs @@ -38,7 +38,7 @@ public DownloadClientProvider(IDownloadClientStatusService downloadClientStatusS public IDownloadClient GetDownloadClient(DownloadProtocol downloadProtocol, int indexerId = 0, bool filterBlockedClients = false, HashSet tags = null) { - // Tags aren't required, but indexers with tags should not be picked unless there is at least one matching tag. + // Tags aren't required, but download clients with tags should not be picked unless there is at least one matching tag. // Defaulting to an empty HashSet ensures this is always checked. tags ??= new HashSet();