Fix full screen player metadata may not change when switching queue
This commit is contained in:
parent
0b786b025f
commit
6c61ea898f
1 changed files with 1 additions and 1 deletions
|
@ -1054,7 +1054,7 @@ export const usePlayerData = () =>
|
||||||
usePlayerStore(
|
usePlayerStore(
|
||||||
(state) => state.actions.getPlayerData(),
|
(state) => state.actions.getPlayerData(),
|
||||||
(a, b) => {
|
(a, b) => {
|
||||||
return a.current.nextIndex === b.current.nextIndex;
|
return a.current.song?.uniqueId === b.current.song?.uniqueId;
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Reference in a new issue