From ee5ed0c91b4d35894f3af260053ffca8ced7bcf9 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Mon, 11 Sep 2023 11:59:51 +0300 Subject: [PATCH] Sonarr > Prowlarr --- src/NzbDrone.Core/Notifications/Pushcut/PushcutProxy.cs | 2 +- src/NzbDrone.Core/Notifications/Signal/SignalProxy.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Pushcut/PushcutProxy.cs b/src/NzbDrone.Core/Notifications/Pushcut/PushcutProxy.cs index ddae1319a..fd8b1a8d6 100644 --- a/src/NzbDrone.Core/Notifications/Pushcut/PushcutProxy.cs +++ b/src/NzbDrone.Core/Notifications/Pushcut/PushcutProxy.cs @@ -58,7 +58,7 @@ public ValidationFailure Test(PushcutSettings settings) { try { - const string title = "Sonarr Test Title"; + const string title = "Prowlarr Test Title"; const string message = "Success! You have properly configured your Pushcut notification settings."; SendNotification(title, message, settings); } diff --git a/src/NzbDrone.Core/Notifications/Signal/SignalProxy.cs b/src/NzbDrone.Core/Notifications/Signal/SignalProxy.cs index e41de7a32..ddae46dac 100644 --- a/src/NzbDrone.Core/Notifications/Signal/SignalProxy.cs +++ b/src/NzbDrone.Core/Notifications/Signal/SignalProxy.cs @@ -64,7 +64,7 @@ public ValidationFailure Test(SignalSettings settings) try { const string title = "Test Notification"; - const string body = "This is a test message from Sonarr"; + const string body = "This is a test message from Prowlarr"; SendNotification(title, body, settings); }