diff --git a/oauth_signup.go b/oauth_signup.go index 5b960ca..d1fa9b5 100644 --- a/oauth_signup.go +++ b/oauth_signup.go @@ -133,7 +133,7 @@ func (h oauthHandler) validateOauthSignup(r *http.Request) error { } collTitle := r.FormValue(oauthParamAlias) if len(collTitle) == 0 { - return impart.HTTPError{Status: http.StatusBadRequest, Message: "Display name is too short."} + collTitle = username } password := r.FormValue("password") if len(password) == 0 {