mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +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
|
|
@ -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