Skip to content

Commit

Permalink
Merge pull request keybase#8536 from keybase/maxtaco/CORE-6090
Browse files Browse the repository at this point in the history
handle bad signup due to team name clash
  • Loading branch information
maxtaco authored Sep 19, 2017
2 parents edb2623 + d54ef1e commit 5a75989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/client/cmd_signup.go
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ func (s *CmdSignup) handlePostError(inerr error) (retry bool, err error) {
s.G().Log.Errorf("Email address '%s' already taken", v)
retry = true
err = nil
case "BAD_SIGNUP_USERNAME_TAKEN":
case "BAD_SIGNUP_USERNAME_TAKEN", "BAD_SIGNUP_TEAM_NAME":
v := s.fields.username.Clear()
s.G().Log.Errorf("Username '%s' already taken", v)
retry = true
Expand Down

0 comments on commit 5a75989

Please sign in to comment.