From eb764832ed1bcdb898a8b3413053cf03f8d3a1ad Mon Sep 17 00:00:00 2001 From: PearsonFlyer Date: Thu, 19 Jan 2023 15:18:58 -0500 Subject: [PATCH] Fix notifiation in Ntfy on test from Radarr to Sonarr (cherry picked from commit 1b599c7e765b10ce043cbf6b127143cc737b378a) --- src/NzbDrone.Core/Notifications/Ntfy/NtfyProxy.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Ntfy/NtfyProxy.cs b/src/NzbDrone.Core/Notifications/Ntfy/NtfyProxy.cs index e969c51ca..b4184b551 100644 --- a/src/NzbDrone.Core/Notifications/Ntfy/NtfyProxy.cs +++ b/src/NzbDrone.Core/Notifications/Ntfy/NtfyProxy.cs @@ -70,9 +70,9 @@ namespace NzbDrone.Core.Notifications.Ntfy { try { - const string title = "Radarr - Test Notification"; + const string title = "Sonarr - Test Notification"; - const string body = "This is a test message from Radarr"; + const string body = "This is a test message from Sonarr"; SendNotification(title, body, settings); }