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:
authorvarjolintu <sami.vanttinen@protonmail.com>2022-09-17 19:32:45 +0300
committervarjolintu <sami.vanttinen@protonmail.com>2022-09-17 19:32:45 +0300
commitdd4334971cc92537506a4de3886fb19306b77480 (patch)
treef2e9bfe09a33b60a03c56144af1bc68221292e58
parentf6cc6d342299e87fe44603c189408686bd9cea46 (diff)
Allow filling TOTP without a combinationfix/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;
}