From 764ba4ab360d84a7b3ac2d1c5a63ff2c495483f5 Mon Sep 17 00:00:00 2001 From: Kim Gardner Date: Tue, 6 Feb 2018 11:21:41 -0500 Subject: [PATCH] Correct password attempt comment --- services/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/users.js b/services/users.js index 96386108f..a8a6b292b 100644 --- a/services/users.js +++ b/services/users.js @@ -21,7 +21,7 @@ const debug = require('debug')('talk:services:users'); const UserModel = require('../models/user'); const RECAPTCHA_WINDOW = '10m'; // 10 minutes. -const RECAPTCHA_INCORRECT_TRIGGER = 5; // after 3 incorrect attempts, recaptcha will be required. +const RECAPTCHA_INCORRECT_TRIGGER = 5; // after 5 incorrect attempts, recaptcha will be required. const ActionsService = require('./actions'); const mailer = require('./mailer');