deletion of useless newlines (markus101 comment)

This commit is contained in:
Your Name 2023-05-21 17:43:16 +02:00
parent 4666a5e588
commit 1ca954469b
2 changed files with 1 additions and 3 deletions

View File

@ -3,9 +3,7 @@ namespace NzbDrone.Core.Notifications.Signal
public class SignalPayload
{
public string Message { get; set; }
public string Number { get; set; }
public string[] Recipients { get; set; }
}
}

View File

@ -65,7 +65,7 @@ namespace NzbDrone.Core.Notifications.Signal
try
{
const string title = "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);
}