autofix: fix nested `if` with `else if` (#6807)

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
pull/6811/head
deepsource-autofix[bot] 2022-03-06 16:39:14 +08:00 committed by GitHub
parent 09dbbf9a69
commit 2466da4e82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -73,10 +73,8 @@ func HandleOrgAssignment(c *Context, args ...bool) {
c.Org.IsMember = true
c.Org.IsTeamMember = true
c.Org.IsTeamAdmin = true
} else {
if org.IsOrgMember(c.User.ID) {
c.Org.IsMember = true
}
} else if org.IsOrgMember(c.User.ID) {
c.Org.IsMember = true
}
} else {
// Fake data.