mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-22 18:32:45 +01:00
fix #2337
This commit is contained in:
parent
c2a3ff141b
commit
1809636680
@ -274,7 +274,11 @@ vAPI.browserSettings = {
|
||||
// has a `media.peerconnection.ice.default_address_only` pref which
|
||||
// purpose is to prevent local IP address leakage.
|
||||
case 'webrtcIPAddress':
|
||||
if ( this.getValue('media.peerconnection', 'ice.default_address_only') !== undefined ) {
|
||||
// https://github.com/gorhill/uBlock/issues/2337
|
||||
if ( this.getValue('media.peerconnection', 'ice.no_host') !== undefined ) {
|
||||
prefName = 'ice.no_host';
|
||||
prefVal = true;
|
||||
} else if ( this.getValue('media.peerconnection', 'ice.default_address_only') !== undefined ) {
|
||||
prefName = 'ice.default_address_only';
|
||||
prefVal = true;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user