From 803c4752db210999ea55f046434354164beac9ee Mon Sep 17 00:00:00 2001 From: Bogdan Date: Thu, 11 Jul 2024 13:35:02 +0300 Subject: [PATCH] Fixed: Sending health restored notifications with Gotify Fixed #2176 --- src/NzbDrone.Core/Notifications/Gotify/Gotify.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs b/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs index 5ee380e8b..54380dae3 100644 --- a/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs +++ b/src/NzbDrone.Core/Notifications/Gotify/Gotify.cs @@ -31,7 +31,7 @@ namespace NzbDrone.Core.Notifications.Gotify public override void OnHealthRestored(HealthCheck.HealthCheck previousCheck) { - _proxy.SendNotification(HEALTH_RESTORED_TITLE, $"The following issue is now resolved: {previousCheck.Message}", null); + _proxy.SendNotification(HEALTH_RESTORED_TITLE, $"The following issue is now resolved: {previousCheck.Message}", Settings); } public override void OnApplicationUpdate(ApplicationUpdateMessage updateMessage)