Skip to content

Commit

Permalink
Removed debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Haxxer committed Jun 13, 2023
1 parent 55a80b9 commit bc757a5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,7 @@ function registerLibwrappers() {
if (window.document.hidden) return video.pause();
const newOptions = statefulVideo.getVideoPlaybackState();
if (!newOptions) return;
let time = performance.now();
const promise = await wrapped(video, newOptions);
// console.log(performance.now() - time)
return promise;
return wrapped(video, newOptions);
}
}
return wrapped(video, options);
Expand Down

0 comments on commit bc757a5

Please sign in to comment.