1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02:00

Added Sonarr-icon to Boxcar notification

Now there is a small Sonarr icon next to the Boxcar message.
This commit is contained in:
karaambaa 2016-10-09 10:46:10 +02:00 committed by Mark McDowall
parent 697a62da0a
commit eeff79b288

View File

@ -77,6 +77,7 @@ private void SendNotification(string title, string message, RestRequest request,
request.AddParameter("notification[title]", title);
request.AddParameter("notification[long_message]", message);
request.AddParameter("notification[source_name]", "Sonarr");
request.AddParameter("notification[icon_url]", "https://raw.githubusercontent.com/Sonarr/Sonarr/7818f0c59b787312f0bcbc5c0eafc3c9dd7e5451/Logo/64.png");
client.ExecuteAndValidate(request);
}