This commit is contained in:
David Svantesson 2020-01-16 01:26:55 +01:00 committed by Antoine GIRARD
parent b67a023bec
commit a2e2045a96
1 changed files with 1 additions and 1 deletions

View File

@ -600,7 +600,7 @@ func AddTeamPost(ctx *context.Context) {
}
name := utils.RemoveUsernameParameterSuffix(strings.ToLower(ctx.Query("team")))
if len(name) == 0 || ctx.Repo.Owner.LowerName == name {
if len(name) == 0 {
ctx.Redirect(ctx.Repo.RepoLink + "/settings/collaboration")
return
}