mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 10:37:41 +00:00
Disable Caching of Album Images For Now
This commit is contained in:
parent
f812302aa5
commit
9c88c2006d
1 changed files with 7 additions and 5 deletions
|
@ -251,11 +251,13 @@ public void HandleAsync(ArtistUpdatedEvent message)
|
|||
{
|
||||
EnsureCovers(message.Artist);
|
||||
|
||||
var albums = _albumService.GetAlbumsByArtist(message.Artist.Id);
|
||||
foreach (Album album in albums)
|
||||
{
|
||||
EnsureAlbumCovers(album);
|
||||
}
|
||||
//Turn off for now, not using album images
|
||||
|
||||
//var albums = _albumService.GetAlbumsByArtist(message.Artist.Id);
|
||||
//foreach (Album album in albums)
|
||||
//{
|
||||
// EnsureAlbumCovers(album);
|
||||
//}
|
||||
|
||||
_eventAggregator.PublishEvent(new MediaCoversUpdatedEvent(message.Artist));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue