summaryrefslogtreecommitdiffstats
path: root/Bugzilla/MFA
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-09-03 10:17:59 +0200
committerByron Jones <glob@mozilla.com>2015-09-03 10:17:59 +0200
commitc0600daa89ee73616737ed2fcaaf03c18a70db93 (patch)
tree5b3f9252a8e8e68b4425589ef466e055d242ef7e /Bugzilla/MFA
parent9c2c81631e60acfbdfd0484e8df6fd85c4494b2a (diff)
downloadbugzilla-c0600daa89ee73616737ed2fcaaf03c18a70db93.tar.gz
bugzilla-c0600daa89ee73616737ed2fcaaf03c18a70db93.tar.xz
Bug 1201422 - extend totp verification time to 90 seconds
Diffstat (limited to 'Bugzilla/MFA')
-rw-r--r--Bugzilla/MFA/TOTP.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/MFA/TOTP.pm b/Bugzilla/MFA/TOTP.pm
index 95e3d89aa..05e4e4e3b 100644
--- a/Bugzilla/MFA/TOTP.pm
+++ b/Bugzilla/MFA/TOTP.pm
@@ -64,7 +64,7 @@ sub prompt {
sub check {
my ($self, $code) = @_;
- $self->_auth()->verify($code)
+ $self->_auth()->verify($code, 1)
|| ThrowUserError('mfa_totp_bad_code');
}