Browse Source

fix bug not to trim space of login username (#1806)

tags/v1.1.2
Lunny Xiao 7 years ago
parent
commit
bbe6aa349f
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      models/login_source.go

+ 6
- 1
models/login_source.go View File

@@ -635,7 +635,12 @@ func UserSignIn(username, password string) (*User, error) {
}
}
} else {
user = &User{LowerName: strings.ToLower(strings.TrimSpace(username))}
trimmedUsername := strings.TrimSpace(username)
if len(trimmedUsername) == 0 {
return nil, ErrUserNotExist{0, username, 0}
}

user = &User{LowerName: strings.ToLower(trimmedUsername)}
}

hasUser, err := x.Get(user)

Loading…
Cancel
Save