mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-14 03:32:06 +00:00
Quickfix for race condition on player load
This commit is contained in:
parent
703ac3ce4f
commit
d0a42a614b
1 changed files with 4 additions and 3 deletions
7
media.js
7
media.js
|
|
@ -92,9 +92,10 @@ Media.prototype.fullupdate = function() {
|
|||
}
|
||||
|
||||
Media.prototype.timeupdate = function() {
|
||||
return {
|
||||
currentTime: this.currentTime
|
||||
};
|
||||
return this.fullupdate();
|
||||
//return {
|
||||
// currentTime: this.currentTime
|
||||
//};
|
||||
}
|
||||
|
||||
exports.Media = Media;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue