Update client/players/LocalAudioPlayer.js

This commit is contained in:
advplyr 2023-03-20 15:48:36 -05:00 committed by GitHub
parent b283644d95
commit 596a03900b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ export default class LocalAudioPlayer extends EventEmitter {
if (!Hls.isSupported()) {
console.warn('HLS is not supported - fallback to using audio element')
this.usingNativeplayer = true
this.player.src = m3u8Url
this.player.src = this.currentTrack.relativeContentUrl
this.player.currentTime = this.startTime
return
}