Merge pull request #11352 from jellyfin/fix-library-removal

fix: explicitly allow remove root when performing library removal
This commit is contained in:
Bond-009
2024-04-18 12:16:04 +02:00
committed by GitHub
9 changed files with 29 additions and 22 deletions

View File

@@ -1106,7 +1106,7 @@ namespace MediaBrowser.Providers.Manager
.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, false, cancellationToken));
await Task.WhenAll(musicArtistRefreshTasks).ConfigureAwait(false);