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
bundle-ui.js:118422 Uncaught RangeError: Maximum call stack size exceeded
at Object.module.exports.getSSB (bundle-ui.js:118395)
at Object.module.exports.getSSB (bundle-ui.js:118422)
at Object.module.exports.getSSB (bundle-ui.js:118422)
at Object.module.exports.getSSB (bundle-ui.js:118422)
at Object.module.exports.getSSB (bundle-ui.js:118422)
at Object.module.exports.getSSB (bundle-ui.js:118422)
at Object.module.exports.getSSB (bundle-ui.js:118422)
at Object.module.exports.getSSB (bundle-ui.js:118422)
at Object.module.exports.getSSB (bundle-ui.js:118422)
at Object.module.exports.getSSB (bundle-ui.js:118422)
Evidently it stems from ssb-singleton's getSSB() calling the getSSB() of another window which turns out to be itself, causing infinite recursion. So we need to make sure we're not calling getSSB() of a window in the "other windows" list which is actually our own window.
The text was updated successfully, but these errors were encountered:
This is a new one:
Evidently it stems from ssb-singleton's
getSSB()
calling thegetSSB()
of another window which turns out to be itself, causing infinite recursion. So we need to make sure we're not callinggetSSB()
of a window in the "other windows" list which is actually our own window.The text was updated successfully, but these errors were encountered: