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); }