mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1726 from keepassxreboot/fix/allow_filling_totp_without_a_combination
Allow filling TOTP without a combination
This commit is contained in:
commit
a93ac4b3ac
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue