Skip to content

Commit

Permalink
fix #2248: proxy DNS too
Browse files Browse the repository at this point in the history
  • Loading branch information
groovecoder committed Jan 1, 2022
1 parent 3b00ade commit 53e9d24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/background/assignManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 53e9d24

Please sign in to comment.