Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSami Vänttinen <sami.vanttinen@protonmail.com>2019-12-09 18:01:08 +0300
committerGitHub <noreply@github.com>2019-12-09 18:01:08 +0300
commit059d0ccf50f6aa5431f8e15ebb9e64a10484cabc (patch)
treec9211c0a4753c0546a3b167015528cd4a9566df3
parente45ca7b2fa90442d616d854fd54acce04247fdfe (diff)
parentbbb7e1480fb7561fd3e01ba0810f33891e0ebf5a (diff)
Merge pull request #710 from keepassxreboot/fix/reset_fill_boolean1.5.4
Reset password filled boolean state on page reload
-rwxr-xr-xkeepassxc-browser/background/page.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/keepassxc-browser/background/page.js b/keepassxc-browser/background/page.js
index 50c9a30..b597042 100755
--- a/keepassxc-browser/background/page.js
+++ b/keepassxc-browser/background/page.js
@@ -138,6 +138,7 @@ page.clearLogins = function(tabId) {
}
page.tabs[tabId].loginList = [];
+ page.passwordFilled = false;
};
page.setSubmittedCredentials = function(submitted, username, password, url, oldCredentials) {