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

View File

@@ -21,14 +21,14 @@ namespace NzbDrone.Core.Notifications.PushBullet
public override void OnGrab(string message)
{
const string title = "NzbDrone - Episode Grabbed";
const string title = "Sonarr - Episode Grabbed";
_proxy.SendNotification(title, message, Settings.ApiKey, Settings.DeviceId);
}
public override void OnDownload(DownloadMessage message)
{
const string title = "NzbDrone - Episode Downloaded";
const string title = "Sonarr - Episode Downloaded";
_proxy.SendNotification(title, message.Message, Settings.ApiKey, Settings.DeviceId);
}