Pier Angelo Vendrame pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
-
7d601745
by Pier Angelo Vendrame at 2024-09-05T20:03:33+02:00
-
e56124b4
by Pier Angelo Vendrame at 2024-09-05T20:03:40+02:00
2 changed files:
Changes:
1 | 1 | toolkit.jar:
|
2 | +#ifndef ANDROID
|
|
2 | 3 | content/global/lox/lox_wasm_bg.wasm (content/lox_wasm_bg.wasm)
|
4 | +#endif |
... | ... | @@ -696,10 +696,12 @@ class TorSettingsImpl { |
696 | 696 | |
697 | 697 | // Initialize this before loading from prefs because we need Lox initialized
|
698 | 698 | // before any calls to Lox.getBridges().
|
699 | - try {
|
|
700 | - await lazy.Lox.init();
|
|
701 | - } catch (e) {
|
|
702 | - lazy.logger.error("Could not initialize Lox.", e);
|
|
699 | + if (!lazy.TorLauncherUtil.isAndroid) {
|
|
700 | + try {
|
|
701 | + await lazy.Lox.init();
|
|
702 | + } catch (e) {
|
|
703 | + lazy.logger.error("Could not initialize Lox.", e);
|
|
704 | + }
|
|
703 | 705 | }
|
704 | 706 | |
705 | 707 | if (
|