From 7c02f232007c791aadf96705a0b0ebab351c4629 Mon Sep 17 00:00:00 2001 From: varjolintu Date: Tue, 3 Nov 2020 12:55:51 +0200 Subject: [PATCH] Remove one TOTP ignore regex --- 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 b3cb810..91906d4 100644 --- a/keepassxc-browser/content/totp-field.js +++ b/keepassxc-browser/content/totp-field.js @@ -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;