Merge pull request #1848 from Kyrluckechuck/fix/seek-to-exact-time-rather-than-floored-second

Seek to millisecond rather than flooring to second
This commit is contained in:
advplyr
2026-07-31 17:18:55 -04:00
committed by GitHub
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -229,7 +229,7 @@ export default {
console.log('Already streaming item', startTime)
if (startTime !== undefined && startTime !== null) {
// seek to start time
AbsAudioPlayer.seek({ value: Math.floor(startTime) })
AbsAudioPlayer.seek({ value: startTime })
} else if (this.$refs.audioPlayer) {
this.$refs.audioPlayer.play()
}