mirror of
https://github.com/mmjee/Piped-Material.git
synced 2024-12-06 19:26:36 +01:00
Fix currentTime being set on a livestream
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user