1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Updated notification titles to sonarr

This commit is contained in:
Keivan Beigi
2014-11-15 20:11:50 -08:00
parent eb5de4a3fa
commit c0a46e04b8
4 changed files with 8 additions and 8 deletions
@@ -21,13 +21,13 @@ namespace NzbDrone.Core.Notifications.Plex
public override void OnGrab(string message)
{
const string header = "NzbDrone [TV] - Grabbed";
const string header = "Sonarr [TV] - Grabbed";
_plexService.Notify(Settings, header, message);
}
public override void OnDownload(DownloadMessage message)
{
const string header = "NzbDrone [TV] - Downloaded";
const string header = "Sonarr [TV] - Downloaded";
_plexService.Notify(Settings, header, message.Message);
}