fix input authentication

This commit is contained in:
kai.t 2024-05-13 18:38:51 +07:00
parent b379e5ba07
commit 3c452ce662
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ function setProxy(proxy) {
browser.webRequest.onAuthRequired.removeListener(sendAuth);
}
if (requestProxy.username) {
if (proxy.username) {
requestProxy.username = credential.username = proxy.username;
requestProxy.password = credential.password = proxy.password;
sendAuth = async () => {