mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
fix metadata refresh for artists (#11257)
This commit is contained in:
@@ -1106,7 +1106,8 @@ namespace MediaBrowser.Providers.Manager
|
|||||||
|
|
||||||
var musicArtists = albums
|
var musicArtists = albums
|
||||||
.Select(i => i.MusicArtist)
|
.Select(i => i.MusicArtist)
|
||||||
.Where(i => i is not null);
|
.Where(i => i is not null)
|
||||||
|
.Distinct();
|
||||||
|
|
||||||
var musicArtistRefreshTasks = musicArtists.Select(i => i.ValidateChildren(new Progress<double>(), options, true, cancellationToken));
|
var musicArtistRefreshTasks = musicArtists.Select(i => i.ValidateChildren(new Progress<double>(), options, true, cancellationToken));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user