Fix artist song list play behavior (#29)
This commit is contained in:
parent
3d8b25922e
commit
a9cfcaeda6
2 changed files with 2 additions and 2 deletions
|
@ -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: {
|
||||
|
|
|
@ -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: {
|
||||
|
|
Reference in a new issue