From 834d334ca6a2f7108dc48db07fa6bbec53a133ff Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 12 Jul 2023 01:37:50 +0300 Subject: [PATCH] Fix Sonarr > Lidarr --- .../Specifications/CustomFormatSpecificationBase.cs | 2 +- src/NzbDrone.Core/Notifications/Simplepush/SimplepushProxy.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/CustomFormats/Specifications/CustomFormatSpecificationBase.cs b/src/NzbDrone.Core/CustomFormats/Specifications/CustomFormatSpecificationBase.cs index af168e883..4f2a3de6a 100644 --- a/src/NzbDrone.Core/CustomFormats/Specifications/CustomFormatSpecificationBase.cs +++ b/src/NzbDrone.Core/CustomFormats/Specifications/CustomFormatSpecificationBase.cs @@ -7,7 +7,7 @@ namespace NzbDrone.Core.CustomFormats public abstract int Order { get; } public abstract string ImplementationName { get; } - public virtual string InfoLink => "https://wiki.servarr.com/sonarr/settings#custom-formats-2"; + public virtual string InfoLink => "https://wiki.servarr.com/lidarr/settings#custom-formats-2"; public string Name { get; set; } public bool Negate { get; set; } diff --git a/src/NzbDrone.Core/Notifications/Simplepush/SimplepushProxy.cs b/src/NzbDrone.Core/Notifications/Simplepush/SimplepushProxy.cs index 457cafb9e..7e01050ec 100644 --- a/src/NzbDrone.Core/Notifications/Simplepush/SimplepushProxy.cs +++ b/src/NzbDrone.Core/Notifications/Simplepush/SimplepushProxy.cs @@ -42,7 +42,7 @@ namespace NzbDrone.Core.Notifications.Simplepush 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 Lidarr"; SendNotification(title, body, settings); }