Fix Sonarr > Lidarr

This commit is contained in:
Bogdan 2023-07-12 01:37:50 +03:00
parent db07eba461
commit 834d334ca6
2 changed files with 2 additions and 2 deletions

View File

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

View File

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