Fix AlbumArtistIds filter to use correct ItemValueType (#14641)

This commit is contained in:
evan314159 2025-08-13 19:52:54 +08:00 committed by GitHub
parent 50180adc53
commit ad133eb6b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1967,7 +1967,7 @@ public sealed class BaseItemRepository
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)