fix metadata refresh for artists (#11257)

This commit is contained in:
Sebastian Held 2024-03-30 17:40:27 +01:00 committed by GitHub
parent 4201079b34
commit bfc5deb234
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -1106,7 +1106,8 @@ namespace MediaBrowser.Providers.Manager
var musicArtists = albums
.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));