Skip to content

Commit

Permalink
Properly reflect whether ipaddress= is supported
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Sep 9, 2024
1 parent 41c9669 commit 52dee35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion platform/common/vapi-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ vAPI.webextFlavor = {
if ( browser.runtime.getURL('').startsWith('moz-extension://') ) {
soup.add('firefox')
.add('user_stylesheet')
.add('html_filtering');
.add('html_filtering')
.add('ipaddress');
const match = /Firefox\/(\d+)/.exec(ua);
flavor.major = match && parseInt(match[1], 10) || 115;
} else {
Expand Down

0 comments on commit 52dee35

Please sign in to comment.