mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #821 from bwbroersma/fix/totp-zippostal-code-negative-check-too-strict
Fix TOTP negative check too strict for (zip|postal)code
This commit is contained in:
commit
90b061de86
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
const MINIMUM_SIZE = 60;
|
||||
const ignoreRegex = /^(zip|postal).*code$/i;
|
||||
const ignoreRegex = /(zip|postal).*code/i;
|
||||
const ignoredTypes = [ 'email', 'password', 'username' ];
|
||||
|
||||
var kpxcTOTPIcons = {};
|
||||
|
|
|
|||
Loading…
Reference in a new issue