Fix:Set user current time when not using HLS.js player (for iOS) #227

This commit is contained in:
advplyr 2021-12-16 19:11:55 -06:00
parent 6160da475f
commit 4d8c0c55d7

View File

@ -585,6 +585,7 @@ export default {
if (!Hls.isSupported()) {
console.warn('HLS is not supported - fallback to using audio element')
audio.src = this.src + '?token=' + this.token
audio.currentTime = currentTime
return
}