use correct player seek event for mpris updater (#1740)

This commit is contained in:
jeffvli
2026-02-18 20:37:18 -08:00
parent 9027eee99f
commit 75af57a7b3
@@ -179,13 +179,13 @@ export const useMPRIS = () => {
mpris?.updateRepeat(properties.repeat);
},
onPlayerSeek: (properties) => {
onPlayerSeekToTimestamp: (properties) => {
if (!mpris) {
return;
}
const seconds = properties.seconds;
mpris?.updateSeek(seconds);
const timestamp = properties.timestamp;
mpris?.updateSeek(timestamp);
},
onPlayerShuffle: (properties) => {
if (!mpris) {