summaryrefslogtreecommitdiffstats
path: root/api/user.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/user.go')
-rw-r--r--api/user.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/api/user.go b/api/user.go
index 84906eece..bb2f1c794 100644
--- a/api/user.go
+++ b/api/user.go
@@ -472,7 +472,11 @@ func login(c *Context, w http.ResponseWriter, r *http.Request) {
if user, err = authenticateUser(user, password, mfaToken); err != nil {
c.LogAuditWithUserId(user.Id, "failure")
//c.Err = model.NewLocAppError("login", "api.user.login.invalid_credentials", nil, err.Error())
- c.Err = model.NewLocAppError("login", "api.user.login.invalid_credentials", nil, "")
+ if err.Id == "api.user.login.not_verified.app_error" {
+ c.Err = err
+ } else {
+ c.Err = model.NewLocAppError("login", "api.user.login.invalid_credentials", nil, "")
+ }
return
}