From b69c6cb4564f3ed78692811efb626ccce94c4125 Mon Sep 17 00:00:00 2001 From: Bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Tue, 9 May 2023 10:29:43 -0500 Subject: [PATCH] Fixed: till => until DownloadClientProvider Logging --- 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 a258983b4..bc0f9f1b9 100644 --- a/src/NzbDrone.Core/Download/DownloadClientProvider.cs +++ b/src/NzbDrone.Core/Download/DownloadClientProvider.cs @@ -111,7 +111,7 @@ namespace NzbDrone.Core.Download { if (blockedClients.TryGetValue(client.Definition.Id, out var blockedClientStatus)) { - _logger.Debug("Temporarily ignoring client {0} till {1} due to recent failures.", client.Definition.Name, blockedClientStatus.DisabledTill.Value.ToLocalTime()); + _logger.Debug("Temporarily ignoring client {0} until {1} due to recent failures.", client.Definition.Name, blockedClientStatus.DisabledTill.Value.ToLocalTime()); continue; }