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>2022-09-18 16:28:32 +0300
committerGitHub <noreply@github.com>2022-09-18 16:28:32 +0300
commita93ac4b3aced154eccd4c2517eabc05a18c5880e (patch)
treef2e9bfe09a33b60a03c56144af1bc68221292e58
parentf6cc6d342299e87fe44603c189408686bd9cea46 (diff)
parentdd4334971cc92537506a4de3886fb19306b77480 (diff)
Merge pull request #1726 from keepassxreboot/fix/allow_filling_totp_without_a_combination
Allow filling TOTP without a combination
-rw-r--r--keepassxc-browser/content/fill.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/keepassxc-browser/content/fill.js b/keepassxc-browser/content/fill.js
index f7b375c..e2e4ed5 100644
--- a/keepassxc-browser/content/fill.js
+++ b/keepassxc-browser/content/fill.js
@@ -169,7 +169,7 @@ kpxcFill.fillTOTPFromUuid = async function(el, uuid) {
// Set normal or segmented TOTP value
kpxcFill.setTOTPValue = function(elem, val) {
- if (kpxc.combinations.length === 0) {
+ if (kpxc.credentials.length === 0) {
logDebug('Error: Credential list is empty.');
return;
}