mirror of https://github.com/gorhill/uBlock.git
Narrow usage of `webRTCIPHandlingPolicy` to only `firefox`
In addition of `mobile`, just in case -- some people are using mobile version of chromium out there.
This commit is contained in:
parent
7a908d293f
commit
ca1ec1461b
|
@ -114,7 +114,9 @@ vAPI.browserSettings = (( ) => {
|
|||
|
||||
return {
|
||||
// https://github.com/uBlockOrigin/uBlock-issues/issues/1723#issuecomment-919913361
|
||||
canLeakLocalIPAddresses: vAPI.webextFlavor.soup.has('mobile'),
|
||||
canLeakLocalIPAddresses:
|
||||
vAPI.webextFlavor.soup.has('firefox') &&
|
||||
vAPI.webextFlavor.soup.has('mobile'),
|
||||
|
||||
set: function(details) {
|
||||
for ( const setting in details ) {
|
||||
|
|
Loading…
Reference in New Issue