From 04572f61bb444037414689ec17eb2c32be93b384 Mon Sep 17 00:00:00 2001 From: Alasdair Smith Date: Fri, 5 Oct 2018 10:18:53 +0100 Subject: [PATCH] Fix copy/paste error --- .../coffee/Features/Authentication/AuthenticationManager.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/app/coffee/Features/Authentication/AuthenticationManager.coffee b/services/web/app/coffee/Features/Authentication/AuthenticationManager.coffee index bedaf60d79..64da009387 100644 --- a/services/web/app/coffee/Features/Authentication/AuthenticationManager.coffee +++ b/services/web/app/coffee/Features/Authentication/AuthenticationManager.coffee @@ -43,7 +43,7 @@ module.exports = AuthenticationManager = return { message: 'password is too short' } if (Settings.passwordStrengthOptions?.length?.min? and Settings.passwordStrengthOptions?.length?.min > password.length) - return { message: "password is too short" } + return { message: "password is too long" } return null setUserPassword: (user_id, password, callback = (error) ->) ->