This commit is contained in:
advplyr 2022-11-24 13:51:53 -06:00
commit 47e732c213

View File

@ -68,7 +68,7 @@ class MediaProgress {
this.finishedAt = progress.finishedAt || Date.now() this.finishedAt = progress.finishedAt || Date.now()
this.progress = 1 this.progress = 1
} }
this.startedAt = this.finishedAt || Date.now() this.startedAt = progress.startedAt || this.finishedAt || Date.now()
} }
update(payload) { update(payload) {