#2045 move fallback to empty string
This commit is contained in:
parent
4795fa01d8
commit
05ba8622f0
1 changed files with 3 additions and 2 deletions
|
@ -113,10 +113,11 @@ func getSlackPushPayload(p *api.PushPayload, slack *SlackMeta) (*SlackPayload, e
|
||||||
}
|
}
|
||||||
|
|
||||||
slackAttachments := []SlackAttachment{{
|
slackAttachments := []SlackAttachment{{
|
||||||
Fallback: fmt.Sprintf("%s pushed %s to %s/%s: %s",
|
|
||||||
p.Pusher, commitDesc, p.Repo.Name, branchName, p.CompareUrl),
|
|
||||||
Color: slack.Color,
|
Color: slack.Color,
|
||||||
Text: attachmentText,
|
Text: attachmentText,
|
||||||
|
}, {
|
||||||
|
Fallback: fmt.Sprintf("%s pushed %s to %s/%s: %s",
|
||||||
|
p.Pusher, commitDesc, p.Repo.Name, branchName, p.CompareUrl),
|
||||||
}}
|
}}
|
||||||
|
|
||||||
return &SlackPayload{
|
return &SlackPayload{
|
||||||
|
|
Loading…
Reference in a new issue