Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 95c72d4

Browse files
authored
Disable web extension process until it is able to restart (#3218)
1 parent 106103c commit 95c72d4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/src/common/shared/org/mozilla/vrbrowser/browser/engine/SessionUtils.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ public static void vrPrefsWorkAround(Context aContext, Bundle aExtras) {
4545
// Disable WebRender until it works with FxR
4646
out.write("pref(\"gfx.webrender.force-disabled\", true);\n".getBytes());
4747
out.write("pref(\"signon.rememberSignons\", false);\n".getBytes());
48+
// Disable web extension process until it is able to restart.
49+
out.write("pref(\"extensions.webextensions.remote\", false);\n".getBytes());
4850
if (BuildConfig.DEBUG) {
4951
int processCount = SettingsStore.getInstance(aContext).isMultiE10s() ? 3 : 1;
5052
out.write(("pref(\"dom.ipc.processCount\", " + processCount + ");\n").getBytes());

0 commit comments

Comments
 (0)