Browse Source

fix metadata refresh for artists (#11257)

Sebastian Held 1 năm trước cách đây
mục cha
commit
bfc5deb234
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      MediaBrowser.Providers/Manager/ProviderManager.cs

+ 2 - 1
MediaBrowser.Providers/Manager/ProviderManager.cs

@@ -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));