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
run XMLHttpRequest.prototype.open.toString() - it returns function () { [native code] } even though it's wrapped by sentry
run XMLHttpRequest.prototype.open.name - it returns "", because it's wrapped by sentry but the wrapper doesn't forward the property access like it forwards the toString call
Expected Result
access to XMLHttpRequest.prototype.open.name returns "open"
Actual Result
access to XMLHttpRequest.prototype.open.name returns ""
This can cause interoperability issues with other tracking services.