mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-31 08:35:34 +01:00
Fix AlbumArtistIds filter to use correct ItemValueType (#14641)
This commit is contained in:
parent
50180adc53
commit
ad133eb6b9
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue