diff options
author | zeripath <art27@cantab.net> | 2019-02-17 21:12:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-17 21:12:39 +0000 |
commit | 11e316654e523bd668a20e1e6a95da3f5b9b22de (patch) | |
tree | 2b5aa52929ccb9052127893e37967c3187adcf67 /models/webhook_dingtalk.go | |
parent | 8d3bb86e20102c52427befa9cb035c2162d9e7da (diff) | |
download | gitea-11e316654e523bd668a20e1e6a95da3f5b9b22de.tar.gz gitea-11e316654e523bd668a20e1e6a95da3f5b9b22de.zip |
Fix deadlock in webhook PullRequest (#6102)
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'models/webhook_dingtalk.go')
-rw-r--r-- | models/webhook_dingtalk.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/models/webhook_dingtalk.go b/models/webhook_dingtalk.go index dbbbebcd9a..1021ab35f1 100644 --- a/models/webhook_dingtalk.go +++ b/models/webhook_dingtalk.go @@ -230,12 +230,13 @@ func getDingtalkPullRequestPayload(p *api.PullRequestPayload) (*DingtalkPayload, title = fmt.Sprintf("[%s] Pull request edited: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) text = p.PullRequest.Body case api.HookIssueAssigned: - list, err := MakeAssigneeList(&Issue{ID: p.PullRequest.ID}) - if err != nil { - return &DingtalkPayload{}, err + list := make([]string, len(p.PullRequest.Assignees)) + for i, user := range p.PullRequest.Assignees { + list[i] = user.UserName } title = fmt.Sprintf("[%s] Pull request assigned to %s: #%d %s", p.Repository.FullName, - list, p.Index, p.PullRequest.Title) + strings.Join(list, ", "), + p.Index, p.PullRequest.Title) text = p.PullRequest.Body case api.HookIssueUnassigned: title = fmt.Sprintf("[%s] Pull request unassigned: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) |