diff --git a/src/renderer/store/player.store.ts b/src/renderer/store/player.store.ts index 6632d755..6e2a8286 100644 --- a/src/renderer/store/player.store.ts +++ b/src/renderer/store/player.store.ts @@ -1054,7 +1054,7 @@ export const usePlayerData = () => usePlayerStore( (state) => state.actions.getPlayerData(), (a, b) => { - return a.current.nextIndex === b.current.nextIndex; + return a.current.song?.uniqueId === b.current.song?.uniqueId; }, );