mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Added: Plex OnAlbumDownloaded handlers.
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user