aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library
diff options
context:
space:
mode:
authorTim Eisele <Ghost_of_Stone@web.de>2025-04-15 04:43:38 +0200
committerGitHub <noreply@github.com>2025-04-14 20:43:38 -0600
commit6e9e2f500f18d879a9aec8e0e1b57e858bc320e4 (patch)
tree38c2de7f4ca5e7e2eed0af2b659415c0450199d1 /Emby.Server.Implementations/Library
parent8be8ea60f1e217310b33375cd1437a485cc52583 (diff)
Fix Genre cleanup (#13916)
Diffstat (limited to 'Emby.Server.Implementations/Library')
-rw-r--r--Emby.Server.Implementations/Library/Validators/GenresValidator.cs2
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
});