You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we remove a video after an onProgress call is queued, a strange null pointer error will happen.
The null error happens at Player.getCurrentTime in the progress callback. The FilePlayer.getCurrentTime call might fail because FilePlayer.player is already removed from Dom and there is no null check inside of FilePlayer.
The text was updated successfully, but these errors were encountered:
The real solution here would be to unmount your player correctly to prevent any further progress callbacks from firing. If you are removing nodes from the DOM outside of the React rendering lifecycle you are asking for errors like this.
If we remove a video after an onProgress call is queued, a strange null pointer error will happen.
The null error happens at Player.getCurrentTime in the progress callback. The FilePlayer.getCurrentTime call might fail because FilePlayer.player is already removed from Dom and there is no null check inside of FilePlayer.
The text was updated successfully, but these errors were encountered: