mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #912 from keepassxreboot/fix/164_final_cleaning
Final cleaning for 1.6.4
This commit is contained in:
commit
d518662696
3 changed files with 3 additions and 2 deletions
|
|
@ -79,6 +79,7 @@
|
|||
"browser": true,
|
||||
"browserAction": true,
|
||||
"createStylesheet": true,
|
||||
"DatabaseState": true,
|
||||
"httpAuth": true,
|
||||
"Icon": true,
|
||||
"isEdge": true,
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ httpAuth.processPendingCallbacks = async function(details, resolve, reject) {
|
|||
// Non-HTTP proxies are possible with PAC scripts, while currently only
|
||||
// Firefox provides info about the proxy protocol used [1].
|
||||
// [1] https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/webRequest/onAuthRequired
|
||||
let scheme = details.proxyInfo ? details.proxyInfo.type : 'http';
|
||||
const scheme = details.proxyInfo ? details.proxyInfo.type : 'http';
|
||||
details.proxyUrl = scheme + '://' + details.challenger.host;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ const DatabaseState = {
|
|||
DISCONNECTED: 0,
|
||||
LOCKED: 1,
|
||||
UNLOCKED: 2
|
||||
}
|
||||
};
|
||||
|
||||
const acceptedOTPFields = [
|
||||
'2fa',
|
||||
|
|
|
|||
Loading…
Reference in a new issue