mirror of https://github.com/lidarr/Lidarr
Added: Plex OnAlbumDownloaded handlers.
This commit is contained in:
parent
734b1f6101
commit
19aacd4fff
|
@ -26,6 +26,10 @@ namespace NzbDrone.Core.Notifications.Plex
|
||||||
_plexClientService.Notify(Settings, TRACK_DOWNLOADED_TITLE_BRANDED, message.Message);
|
_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()
|
public override ValidationResult Test()
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,6 +22,11 @@ namespace NzbDrone.Core.Notifications.Plex
|
||||||
UpdateIfEnabled(message.Artist);
|
UpdateIfEnabled(message.Artist);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override void OnAlbumDownload(AlbumDownloadMessage message)
|
||||||
|
{
|
||||||
|
UpdateIfEnabled(message.Artist);
|
||||||
|
}
|
||||||
|
|
||||||
public override void OnRename(Artist artist)
|
public override void OnRename(Artist artist)
|
||||||
{
|
{
|
||||||
UpdateIfEnabled(artist);
|
UpdateIfEnabled(artist);
|
||||||
|
|
Loading…
Reference in New Issue