dont' send assign webhooks when creating issue (#5365)

This commit is contained in:
Lunny Xiao 2018-11-21 01:10:18 +08:00 committed by techknowlogick
parent 3a95e2d0ea
commit 499bff43d9
1 changed files with 5 additions and 4 deletions

View File

@ -159,12 +159,13 @@ func (issue *Issue) changeAssignee(sess *xorm.Session, doer *User, assigneeID in
return fmt.Errorf("createAssigneeComment: %v", err)
}
// if issue/pull is in the middle of creation - don't call webhook
if isCreate {
return nil
}
mode, _ := accessLevel(sess, doer.ID, issue.Repo)
if issue.IsPull {
// if pull request is in the middle of creation - don't call webhook
if isCreate {
return nil
}
if err = issue.loadPullRequest(sess); err != nil {
return fmt.Errorf("loadPullRequest: %v", err)
}