Added: Plex OnAlbumDownloaded handlers.

This commit is contained in:
Qstick 2018-04-11 22:59:51 -04:00
parent 734b1f6101
commit 19aacd4fff
2 changed files with 9 additions and 0 deletions

View File

@ -26,6 +26,10 @@ namespace NzbDrone.Core.Notifications.Plex
_plexClientService.Notify(Settings, TRACK_DOWNLOADED_TITLE_BRANDED, message.Message);
}
public override void OnAlbumDownload(AlbumDownloadMessage message)
{
_plexClientService.Notify(Settings, ALBUM_DOWNLOADED_TITLE_BRANDED, message.Message);
}
public override ValidationResult Test()
{

View File

@ -22,6 +22,11 @@ namespace NzbDrone.Core.Notifications.Plex
UpdateIfEnabled(message.Artist);
}
public override void OnAlbumDownload(AlbumDownloadMessage message)
{
UpdateIfEnabled(message.Artist);
}
public override void OnRename(Artist artist)
{
UpdateIfEnabled(artist);