Merge pull request #1085 from keepassxreboot/fix/totp_173

Remove one TOTP ignore regex
This commit is contained in:
Sami Vänttinen 2020-11-04 06:53:22 +02:00 committed by GitHub
commit 9896debfc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
'use strict';
const ignoreRegex = /(act|bank|coupon|postal|user|zip).*code|comment|author/i;
const ignoreRegex = /(bank|coupon|postal|user|zip).*code|comment|author/i;
const ignoredTypes = [ 'email', 'password', 'username' ];
const MIN_INPUT_LENGTH = 6;
const MAX_INPUT_LENGTH = 10;