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_slack.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_slack.go')
-rw-r--r-- | models/webhook_slack.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/models/webhook_slack.go b/models/webhook_slack.go index 5c67951fba..90d5ccce0b 100644 --- a/models/webhook_slack.go +++ b/models/webhook_slack.go @@ -301,12 +301,12 @@ func getSlackPullRequestPayload(p *api.PullRequestPayload, slack *SlackMeta) (*S text = fmt.Sprintf("[%s] Pull request edited: %s by %s", p.Repository.FullName, titleLink, senderLink) attachmentText = SlackTextFormatter(p.PullRequest.Body) case api.HookIssueAssigned: - list, err := MakeAssigneeList(&Issue{ID: p.PullRequest.ID}) - if err != nil { - return &SlackPayload{}, err + list := make([]string, len(p.PullRequest.Assignees)) + for i, user := range p.PullRequest.Assignees { + list[i] = SlackLinkFormatter(setting.AppURL+user.UserName, user.UserName) } text = fmt.Sprintf("[%s] Pull request assigned to %s: %s by %s", p.Repository.FullName, - SlackLinkFormatter(setting.AppURL+list, list), + strings.Join(list, ", "), titleLink, senderLink) case api.HookIssueUnassigned: text = fmt.Sprintf("[%s] Pull request unassigned: %s by %s", p.Repository.FullName, titleLink, senderLink) |