fix input authentication
This commit is contained in:
parent
b379e5ba07
commit
3c452ce662
|
|
@ -25,7 +25,7 @@ function setProxy(proxy) {
|
||||||
browser.webRequest.onAuthRequired.removeListener(sendAuth);
|
browser.webRequest.onAuthRequired.removeListener(sendAuth);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (requestProxy.username) {
|
if (proxy.username) {
|
||||||
requestProxy.username = credential.username = proxy.username;
|
requestProxy.username = credential.username = proxy.username;
|
||||||
requestProxy.password = credential.password = proxy.password;
|
requestProxy.password = credential.password = proxy.password;
|
||||||
sendAuth = async () => {
|
sendAuth = async () => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue