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
Related to #901. Seems to only happen with certain chrome flags set, and after coming back to a session after a long period of time.
When unsuspending multiple tabs with 'unsuspend selected', if there are 3 or more tabs selected, then the middle tabs will not unsuspend even though they are specifically given a chrome.tabs.update(tabId, unsuspendedUrl) command.
Sometimes a tab that is suspending will be discarded before it finishes initialising the suspended state. This causes a bad favicon and title situation.
The text was updated successfully, but these errors were encountered:
Fix for 1. was to set tab property autoDiscardable to false when reloading. This seems to force the unsuspend. NOTE: The tabs autoDiscardable value is set back to true once the tab has finished unsuspending.
Fix for 2. was to trigger a tab init and check not only on the suspended tab status === complete event, but also on a discarded event.
Related to #901. Seems to only happen with certain chrome flags set, and after coming back to a session after a long period of time.
When unsuspending multiple tabs with 'unsuspend selected', if there are 3 or more tabs selected, then the middle tabs will not unsuspend even though they are specifically given a
chrome.tabs.update(tabId, unsuspendedUrl)
command.Sometimes a tab that is suspending will be discarded before it finishes initialising the suspended state. This causes a bad favicon and title situation.
The text was updated successfully, but these errors were encountered: