Browse Source

Fix AlbumArtistIds filter to use correct ItemValueType (#14641)

evan314159 1 week ago
parent
commit
ad133eb6b9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jellyfin.Server.Implementations/Item/BaseItemRepository.cs

+ 1 - 1
Jellyfin.Server.Implementations/Item/BaseItemRepository.cs

@@ -1967,7 +1967,7 @@ public sealed class BaseItemRepository
 
 
         if (filter.AlbumArtistIds.Length > 0)
         if (filter.AlbumArtistIds.Length > 0)
         {
         {
-            baseQuery = baseQuery.WhereReferencedItem(context, ItemValueType.Artist, filter.AlbumArtistIds);
+            baseQuery = baseQuery.WhereReferencedItem(context, ItemValueType.AlbumArtist, filter.AlbumArtistIds);
         }
         }
 
 
         if (filter.ContributingArtistIds.Length > 0)
         if (filter.ContributingArtistIds.Length > 0)