diff --git a/src/controllers/authentication.js b/src/controllers/authentication.js index 09cb5837b2..5ca9c421ad 100644 --- a/src/controllers/authentication.js +++ b/src/controllers/authentication.js @@ -52,7 +52,7 @@ authenticationController.register = function (req, res) { } if (userData.username.length > meta.config.maximumUsernameLength) { - return next(new Error('[[error:username-too-long')); + return next(new Error('[[error:username-too-long]]')); } user.isPasswordValid(userData.password, next);