diff options
| author | Tim Eisele <Ghost_of_Stone@web.de> | 2025-04-15 04:43:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-14 20:43:38 -0600 |
| commit | 6e9e2f500f18d879a9aec8e0e1b57e858bc320e4 (patch) | |
| tree | 38c2de7f4ca5e7e2eed0af2b659415c0450199d1 /Emby.Server.Implementations/Library/Validators | |
| parent | 8be8ea60f1e217310b33375cd1437a485cc52583 (diff) | |
Fix Genre cleanup (#13916)
Diffstat (limited to 'Emby.Server.Implementations/Library/Validators')
| -rw-r--r-- | Emby.Server.Implementations/Library/Validators/GenresValidator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/Validators/GenresValidator.cs b/Emby.Server.Implementations/Library/Validators/GenresValidator.cs index d71e91174..364770fcd 100644 --- a/Emby.Server.Implementations/Library/Validators/GenresValidator.cs +++ b/Emby.Server.Implementations/Library/Validators/GenresValidator.cs @@ -80,7 +80,7 @@ namespace Emby.Server.Implementations.Library.Validators var deadEntities = _libraryManager.GetItemList(new InternalItemsQuery { - IncludeItemTypes = [BaseItemKind.Genre], + IncludeItemTypes = [BaseItemKind.Genre, BaseItemKind.MusicGenre], IsDeadGenre = true, IsLocked = false }); |
