[Firefox] Don't send the "initPassiveLoading" message synchronously

The return value is not, nor has it ever been, used for anything and we should thus be able to just send the message.
Note that the responses are already handled by the "message" event listener registered above.
This commit is contained in:
Jonas Jenwald 2023-11-26 12:18:08 +01:00
parent f4952399a4
commit ddebb0f954

View File

@ -403,7 +403,7 @@ class FirefoxExternalServices extends DefaultExternalServices {
break;
}
});
FirefoxCom.requestSync("initPassiveLoading", null);
FirefoxCom.request("initPassiveLoading", null);
}
static reportTelemetry(data) {