From dd4334971cc92537506a4de3886fb19306b77480 Mon Sep 17 00:00:00 2001 From: varjolintu Date: Sat, 17 Sep 2022 19:32:45 +0300 Subject: [PATCH] Allow filling TOTP without a combination --- keepassxc-browser/content/fill.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }