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
Thanks for using vidbacking. As I never encountered this issue before, please share the code that will generate the error. it will help me to do required changes in the code.
I obtain a
Uncaught TypeError: obj[0] is undefined
in line 265, and had to add a check forobj[0]
to make it work:if(obj[0] && obj[0].paused){
instead ofif(obj[0].paused){
The text was updated successfully, but these errors were encountered: