Merge pull request #2283 from mozilla/fix-advanced-proxy-2278

return single ProxyInfo object when advanced proxy
This commit is contained in:
luke crouch 2022-02-10 15:52:37 -06:00 committed by GitHub
commit 916151482c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -198,7 +198,7 @@ window.assignManager = {
} }
if (!result.proxy.mozProxyEnabled) { if (!result.proxy.mozProxyEnabled) {
return [{ ...result.proxy, proxyDNS: true }]; return { ...result.proxy, proxyDNS: true };
} }
// Let's add the isolation key. // Let's add the isolation key.