mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
Never let "localhost" get sent to a proxy.
Also make "No proxy for" editable always when usable.
This commit is contained in:
parent
183aae036f
commit
dbe5dd5e2a
3 changed files with 9 additions and 2 deletions
|
|
@ -76,7 +76,7 @@ var gConnectionsDialog = {
|
|||
var autologinProxyPref = document.getElementById("signon.autologin.proxy");
|
||||
autologinProxyPref.disabled = proxyTypePref.value == 0;
|
||||
var noProxiesPref = document.getElementById("network.proxy.no_proxies_on");
|
||||
noProxiesPref.disabled = proxyTypePref.value != 1;
|
||||
noProxiesPref.disabled = proxyTypePref.value == 0;
|
||||
|
||||
var autoconfigURLPref = document.getElementById("network.proxy.autoconfig_url");
|
||||
autoconfigURLPref.disabled = proxyTypePref.value != 2;
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ var gConnectionsDialog = {
|
|||
autologinProxyPref.disabled = proxyTypePref.value == 0;
|
||||
|
||||
var noProxiesPref = document.getElementById("network.proxy.no_proxies_on");
|
||||
noProxiesPref.disabled = proxyTypePref.value != 1;
|
||||
noProxiesPref.disabled = proxyTypePref.value == 0;
|
||||
|
||||
var autoconfigURLPref = document.getElementById("network.proxy.autoconfig_url");
|
||||
autoconfigURLPref.disabled = proxyTypePref.value != 2;
|
||||
|
|
|
|||
|
|
@ -1841,6 +1841,13 @@ nsProtocolProxyService::Resolve_Internal(nsIChannel *channel,
|
|||
if (mPACMan && mPACMan->IsPACURI(uri))
|
||||
return NS_OK;
|
||||
|
||||
// If proxies are enabled and this host:port combo is supposed to use a
|
||||
// proxy, check for a proxy.
|
||||
if ((mProxyConfig == PROXYCONFIG_DIRECT) ||
|
||||
!CanUseProxy(uri, info.defaultPort)) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
bool mainThreadOnly;
|
||||
if (mSystemProxySettings &&
|
||||
mProxyConfig == PROXYCONFIG_SYSTEM &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue