Fix currentTime being set on a livestream

This commit is contained in:
root
2021-12-28 01:58:27 +05:30
parent 186595423c
commit 39a79a972d
+1 -1
View File
@@ -86,7 +86,7 @@ export default {
videoEl.setAttribute('poster', this.video.thumbnailUrl)
if (this.skipToTime != null) videoEl.currentTime = this.skipToTime
if (this.skipToTime != null && Number.isFinite(this.skipToTime)) videoEl.currentTime = this.skipToTime
const noPrevPlayer = !this.$player