removed [TV] from Kodi notifications

This commit is contained in:
Keivan Beigi 2015-01-14 23:06:03 -08:00
parent c9d7e54417
commit 434099ea2b
1 changed files with 2 additions and 2 deletions

View File

@ -27,14 +27,14 @@ namespace NzbDrone.Core.Notifications.Xbmc
public override void OnGrab(string message) public override void OnGrab(string message)
{ {
const string header = "Sonarr [TV] - Grabbed"; const string header = "Sonarr - Grabbed";
Notify(Settings, header, message); Notify(Settings, header, message);
} }
public override void OnDownload(DownloadMessage message) public override void OnDownload(DownloadMessage message)
{ {
const string header = "Sonarr [TV] - Downloaded"; const string header = "Sonarr - Downloaded";
Notify(Settings, header, message.Message); Notify(Settings, header, message.Message);
UpdateAndClean(message.Series, message.OldFiles.Any()); UpdateAndClean(message.Series, message.OldFiles.Any());