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
It throws this error, but the videos do play. I'm just not sure what side affects this error could be causing.
ERROR TypeError: event.data.indexOf is not a function
at Timeout.handleEvent (timingsrc-v2.js:1633:55)
at task.callback (zone.js:1596:1)
at ZoneDelegate.invokeTask (zone.js:406:1)
at Object.onInvokeTask (core.mjs:25505:1)
at ZoneDelegate.invokeTask (zone.js:405:1)
at Zone.runTask (zone.js:178:1)
at ZoneTask.invokeTask [as invoke] (zone.js:487:1)
at invokeTask (zone.js:1600:1)
at globalZoneAwareCaptureCallback (zone.js:1658:1)
Which is referencing this block of code.
```
Timeout.prototype.handleEvent = function (event) {
if (event.source === window && event.data.indexOf("smalldelaymsg_") === 0) {
event.stopPropagation();
// ignore if timeout has been canceled
var the_tid = parseInt(event.data.split("_")[1]);
if (this._tid !== null && this._tid === the_tid) {
this._ontimeout();
}
}
};
Any help or direction in solving this would be really appreciated.
Thank you.
The text was updated successfully, but these errors were encountered:
I'm creating a TimingObject instance like so:
However, when I play the timingObject.
It throws this error, but the videos do play. I'm just not sure what side affects this error could be causing.
ERROR TypeError: event.data.indexOf is not a function
at Timeout.handleEvent (timingsrc-v2.js:1633:55)
at task.callback (zone.js:1596:1)
at ZoneDelegate.invokeTask (zone.js:406:1)
at Object.onInvokeTask (core.mjs:25505:1)
at ZoneDelegate.invokeTask (zone.js:405:1)
at Zone.runTask (zone.js:178:1)
at ZoneTask.invokeTask [as invoke] (zone.js:487:1)
at invokeTask (zone.js:1600:1)
at globalZoneAwareCaptureCallback (zone.js:1658:1)
The text was updated successfully, but these errors were encountered: