From b65e03da9ad0a09be8025e9ee10d96c3e082b4bb Mon Sep 17 00:00:00 2001 From: Tim Eisele Date: Mon, 7 Apr 2025 14:11:05 +0200 Subject: [PATCH] Fix Genre type (#13862) --- Jellyfin.Server.Implementations/Item/BaseItemRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs index 4a6a7f8cdc..f3e7bb3c58 100644 --- a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs +++ b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs @@ -68,7 +68,7 @@ public sealed class BaseItemRepository private static readonly IReadOnlyList _getArtistValueTypes = [ItemValueType.Artist]; private static readonly IReadOnlyList _getAlbumArtistValueTypes = [ItemValueType.AlbumArtist]; private static readonly IReadOnlyList _getStudiosValueTypes = [ItemValueType.Studios]; - private static readonly IReadOnlyList _getGenreValueTypes = [ItemValueType.Studios]; + private static readonly IReadOnlyList _getGenreValueTypes = [ItemValueType.Genre]; /// /// Initializes a new instance of the class.