1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-23 16:23:13 +00:00

removed [TV] from Kodi notifications

This commit is contained in:
Keivan Beigi 2015-01-14 23:06:03 -08:00
parent c9d7e54417
commit 434099ea2b

View file

@ -27,14 +27,14 @@ public override string Link
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());