mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1693 from keepassxreboot/fix/slack_segmented_totp
Ignore hidden inputs with segmented TOTP fields
This commit is contained in:
commit
279b1ec863
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ kpxcFields.getSegmentedTOTPFields = function(inputs, combinations) {
|
|||
return;
|
||||
}
|
||||
const addTotpFieldsToCombination = function(inputFields) {
|
||||
const totpInputs = Array.from(inputFields).filter(e => e.nodeName === 'INPUT' && e.type !== 'password');
|
||||
const totpInputs = Array.from(inputFields).filter(e => e.nodeName === 'INPUT' && e.type !== 'password' && e.type !== 'hidden');
|
||||
if (totpInputs.length === 6) {
|
||||
const combination = {
|
||||
form: form,
|
||||
|
|
|
|||
Loading…
Reference in a new issue