Skip to content

Commit b2aed74

Browse files
committed
fix: Restore browser.link.open_newwindow on Android
Fixes #1592
1 parent 3ad3485 commit b2aed74

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/firefox/preferences.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ const prefsCommon: FirefoxPreferences = {
5959
const prefsFennec: FirefoxPreferences = {
6060
'browser.console.showInPanel': true,
6161
'browser.firstrun.show.uidiscovery': false,
62+
// browser.link.open_newwindow is changed from 3 to 2 in:
63+
// https://github.com/saadtazi/firefox-profile-js/blob/cafc793d940a779d280103ae17d02a92de862efc/lib/firefox_profile.js#L32
64+
// Restore original value to avoid https://github.com/mozilla/web-ext/issues/1592
65+
'browser.link.open_newwindow': 3,
6266
'devtools.remote.usb.enabled': true,
6367
};
6468

0 commit comments

Comments
 (0)