fix #2248: proxy DNS too
This commit is contained in:
parent
3b00ade521
commit
53e9d24d40
1 changed files with 2 additions and 2 deletions
|
@ -198,11 +198,11 @@ window.assignManager = {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!result.proxy.mozProxyEnabled) {
|
if (!result.proxy.mozProxyEnabled) {
|
||||||
return result.proxy;
|
return [{ ...result.proxy, proxyDNS: true }];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Let's add the isolation key.
|
// Let's add the isolation key.
|
||||||
return [{ ...result.proxy, connectionIsolationKey: "" + MozillaVPN_Background.isolationKey }];
|
return [{ ...result.proxy, connectionIsolationKey: "" + MozillaVPN_Background.isolationKey, proxyDNS: true }];
|
||||||
},
|
},
|
||||||
|
|
||||||
// Before a request is handled by the browser we decide if we should
|
// Before a request is handled by the browser we decide if we should
|
||||||
|
|
Loading…
Add table
Reference in a new issue