1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-04 08:37:11 +02:00

Do not call onReady if addon is installing

If the uBlock extension is installed globally for all users on a machine, a user's first run of Firefox will fail to load uBlock because the call to appShell.hiddenDOMWindow will throw an exception. A second run of Firefox will load uBlock successfully.

The change will skip the call to onReady if the reason for the call to startup is because the addon is being installed.
This commit is contained in:
Neil Richardson 2015-09-25 14:52:54 +08:00
parent e858c91224
commit 93fb1dd251

View File

@ -86,7 +86,7 @@ function startup(data, reason) {
);
};
if ( reason !== APP_STARTUP ) {
if ( reason !== APP_STARTUP && reason !== ADDON_INSTALL) {
onReady();
return;
}