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
Need to Recheck if the window is closing. Think the chrome.window.get or chrome.tabs.getAllInWindow is asynchronous. So the to modify the window is firing after window has started to close. Added recheck to
eventHandlers
getPopulatedWindow(windowId, function(browserWindow) {
+ if (isWindowClosing[windowId]||istabLoading[tabId]){
+ return;
+ }
If you open a saved window and close it before the tabs are fully loaded, the saved window contains 0 tabs.
The text was updated successfully, but these errors were encountered: