Merge pull request #2258 from mozilla/proxy-dns-2248
fix #2248: proxy DNS too
This commit is contained in:
commit
cb31410dd9
1 changed files with 2 additions and 2 deletions
|
@ -198,11 +198,11 @@ window.assignManager = {
|
|||
}
|
||||
|
||||
if (!result.proxy.mozProxyEnabled) {
|
||||
return result.proxy;
|
||||
return [{ ...result.proxy, proxyDNS: true }];
|
||||
}
|
||||
|
||||
// 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
|
||||
|
|
Loading…
Add table
Reference in a new issue