From 0572bde41ec923a4a44767bd9d5a2f0ba59bc07b Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 7 May 2023 20:25:41 -0700 Subject: [PATCH] Why rename many files when few file do trick (cherry picked from commit eaa4a358e8eb93e15203001d16e868e22aded5c3) Closes #2465 --- src/NzbDrone.Core/Notifications/NotificationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index ac518ae66..246bf6448 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -277,7 +277,7 @@ public void Handle(HealthCheckFailedEvent message) { // Don't send health check notifications during the start up grace period, // once that duration expires they they'll be retested and fired off if necessary. - if (message.IsInStartupGraceperiod) + if (message.IsInStartupGracePeriod) { return; }