From 9247034faa0c600186fd3a4919fc4025ddb5401d Mon Sep 17 00:00:00 2001 From: varjolintu Date: Thu, 22 Oct 2020 13:27:09 +0300 Subject: [PATCH] TOTP ignoredTypes fix --- keepassxc-browser/content/totp-field.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keepassxc-browser/content/totp-field.js b/keepassxc-browser/content/totp-field.js index 0a03a98..b3cb810 100644 --- a/keepassxc-browser/content/totp-field.js +++ b/keepassxc-browser/content/totp-field.js @@ -1,6 +1,6 @@ 'use strict'; -const ignoreRegex = /(zip|postal).*code/i; +const ignoreRegex = /(act|bank|coupon|postal|user|zip).*code|comment|author/i; const ignoredTypes = [ 'email', 'password', 'username' ]; const MIN_INPUT_LENGTH = 6; const MAX_INPUT_LENGTH = 10;