diff --git a/src/NzbDrone.Core/Notifications/Email/Email.cs b/src/NzbDrone.Core/Notifications/Email/Email.cs index 9624f4165..724710e6b 100644 --- a/src/NzbDrone.Core/Notifications/Email/Email.cs +++ b/src/NzbDrone.Core/Notifications/Email/Email.cs @@ -22,7 +22,7 @@ namespace NzbDrone.Core.Notifications.Email public override void OnGrab(string message) { - const string subject = "NzbDrone [TV] - Grabbed"; + const string subject = "Sonarr [TV] - Grabbed"; var body = String.Format("{0} sent to queue.", message); _emailService.SendEmail(Settings, subject, body); @@ -30,7 +30,7 @@ namespace NzbDrone.Core.Notifications.Email public override void OnDownload(DownloadMessage message) { - const string subject = "NzbDrone [TV] - Downloaded"; + const string subject = "Sonarr [TV] - Downloaded"; var body = String.Format("{0} Downloaded and sorted.", message.Message); _emailService.SendEmail(Settings, subject, body); diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexClient.cs b/src/NzbDrone.Core/Notifications/Plex/PlexClient.cs index 0b2ffa23e..f724e3a8a 100644 --- a/src/NzbDrone.Core/Notifications/Plex/PlexClient.cs +++ b/src/NzbDrone.Core/Notifications/Plex/PlexClient.cs @@ -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); } diff --git a/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs b/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs index d0d5f9c0e..f38ef9221 100644 --- a/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs +++ b/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs @@ -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); } diff --git a/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs b/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs index dcf616358..5b8ef2abe 100644 --- a/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs +++ b/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs @@ -22,7 +22,7 @@ namespace NzbDrone.Core.Notifications.Xbmc public override void OnGrab(string message) { - const string header = "NzbDrone [TV] - Grabbed"; + const string header = "Sonarr [TV] - Grabbed"; if (Settings.Notify) { @@ -32,7 +32,7 @@ namespace NzbDrone.Core.Notifications.Xbmc public override void OnDownload(DownloadMessage message) { - const string header = "NzbDrone [TV] - Downloaded"; + const string header = "Sonarr [TV] - Downloaded"; if (Settings.Notify) {