mirror of https://github.com/lidarr/Lidarr
removed [TV] from Kodi notifications
This commit is contained in:
parent
c9d7e54417
commit
434099ea2b
|
@ -27,14 +27,14 @@ namespace NzbDrone.Core.Notifications.Xbmc
|
|||
|
||||
public override void OnGrab(string message)
|
||||
{
|
||||
const string header = "Sonarr [TV] - Grabbed";
|
||||
const string header = "Sonarr - Grabbed";
|
||||
|
||||
Notify(Settings, header, message);
|
||||
}
|
||||
|
||||
public override void OnDownload(DownloadMessage message)
|
||||
{
|
||||
const string header = "Sonarr [TV] - Downloaded";
|
||||
const string header = "Sonarr - Downloaded";
|
||||
|
||||
Notify(Settings, header, message.Message);
|
||||
UpdateAndClean(message.Series, message.OldFiles.Any());
|
||||
|
|
Loading…
Reference in New Issue