Fix artist song list play behavior (#29)

This commit is contained in:
Jeff 2023-02-22 12:22:39 -08:00 committed by GitHub
parent 3d8b25922e
commit a9cfcaeda6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -252,7 +252,7 @@ export const SongListHeaderFilters = ({
const handlePlay = async (play: Play) => {
if (!itemCount || itemCount === 0) return;
const query: SongListQuery = { startIndex: 0, ...page.filter };
const query: SongListQuery = { startIndex: 0, ...page.filter, ...customFilters };
handlePlayQueueAdd?.({
byItemType: {

View file

@ -95,7 +95,7 @@ export const SongListHeader = ({
const handlePlay = async (play: Play) => {
if (!itemCount || itemCount === 0) return;
const query: SongListQuery = { startIndex: 0, ...page.filter };
const query: SongListQuery = { startIndex: 0, ...page.filter, ...customFilters };
handlePlayQueueAdd?.({
byItemType: {