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
This means that such an error is not caught via our async instrumentation setTimeout, XMLHttpRequest handlers, etc, but caught via our last-resort onerror handler.
To reproduce:
<script>// before setTimeout is instrumented by Raven.jssetTimeout(function(){throw'lol';// this will fire after Raven is configured/installed});</script><scriptsrc="https://cdn.ravenjs.com/3.11.0/raven.js"></script><script>Raven.config('your-dsn').install();</script>
This is particularly a problem for uBlock users on Safari, because that extension is triggering this error for every blocked URL.
The text was updated successfully, but these errors were encountered:
This means that such an error is not caught via our async instrumentation
setTimeout
,XMLHttpRequest
handlers, etc, but caught via our last-resortonerror
handler.To reproduce:
This is particularly a problem for uBlock users on Safari, because that extension is triggering this error for every blocked URL.
The text was updated successfully, but these errors were encountered: