From dc2327af335544f3df0107bcb877929335759a25 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Sat, 19 Oct 2024 14:24:22 +0200 Subject: [PATCH] fix player playback pos update --- MusicPlayerV2-GUI/src/components/playerView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/MusicPlayerV2-GUI/src/components/playerView.vue b/MusicPlayerV2-GUI/src/components/playerView.vue index 541087e..ed49f1d 100644 --- a/MusicPlayerV2-GUI/src/components/playerView.vue +++ b/MusicPlayerV2-GUI/src/components/playerView.vue @@ -434,6 +434,7 @@ if ( pos.value > 0 && !hasStarted ) { getDetails(); playingSong = player.getPlayingSong(); + pos.value = player.getPlaybackPos(); prepNiceDurationTime( playingSong ); notificationHandler.emit( 'playlist-index-update', currentlyPlayingSongIndex.value ); notificationHandler.emit( 'playback-update', isPlaying.value );