Skip to content

Commit

Permalink
fix: Restore browser.link.open_newwindow on Android
Browse files Browse the repository at this point in the history
Fixes #1592
  • Loading branch information
Rob--W committed May 2, 2019
1 parent 3ad3485 commit b2aed74
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/firefox/preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ const prefsCommon: FirefoxPreferences = {
const prefsFennec: FirefoxPreferences = {
'browser.console.showInPanel': true,
'browser.firstrun.show.uidiscovery': false,
// browser.link.open_newwindow is changed from 3 to 2 in:
// https://github.com/saadtazi/firefox-profile-js/blob/cafc793d940a779d280103ae17d02a92de862efc/lib/firefox_profile.js#L32
// Restore original value to avoid https://github.com/mozilla/web-ext/issues/1592
'browser.link.open_newwindow': 3,
'devtools.remote.usb.enabled': true,
};

Expand Down

0 comments on commit b2aed74

Please sign in to comment.