mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07: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 @@ namespace NzbDrone.Core.MediaCover
|
||||||
{
|
{
|
||||||
EnsureCovers(message.Artist);
|
EnsureCovers(message.Artist);
|
||||||
|
|
||||||
var albums = _albumService.GetAlbumsByArtist(message.Artist.Id);
|
//Turn off for now, not using album images
|
||||||
foreach (Album album in albums)
|
|
||||||
{
|
//var albums = _albumService.GetAlbumsByArtist(message.Artist.Id);
|
||||||
EnsureAlbumCovers(album);
|
//foreach (Album album in albums)
|
||||||
}
|
//{
|
||||||
|
// EnsureAlbumCovers(album);
|
||||||
|
//}
|
||||||
|
|
||||||
_eventAggregator.PublishEvent(new MediaCoversUpdatedEvent(message.Artist));
|
_eventAggregator.PublishEvent(new MediaCoversUpdatedEvent(message.Artist));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue