mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Fix update button from Credential Banner
This commit is contained in:
parent
32d513d4a1
commit
36644995da
1 changed files with 1 additions and 1 deletions
|
|
@ -1573,7 +1573,7 @@ kpxc.contextMenuRememberCredentials = async function() {
|
|||
* @param {Array} oldCredentials Credentials saved from the password change page, if available
|
||||
*/
|
||||
kpxc.rememberCredentials = async function(usernameValue, passwordValue, urlValue, oldCredentials) {
|
||||
const credentials = kpxc.credentials || oldCredentials;
|
||||
const credentials = (oldCredentials !== undefined && oldCredentials.length > 0) ? oldCredentials : kpxc.credentials;
|
||||
|
||||
// No password given or field cleaned by a site-running script
|
||||
// --> no password to save
|
||||
|
|
|
|||
Loading…
Reference in a new issue