#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{{
|
||||
Fallback: fmt.Sprintf("%s pushed %s to %s/%s: %s",
|
||||
p.Pusher, commitDesc, p.Repo.Name, branchName, p.CompareUrl),
|
||||
Color: slack.Color,
|
||||
Text: attachmentText,
|
||||
}, {
|
||||
Fallback: fmt.Sprintf("%s pushed %s to %s/%s: %s",
|
||||
p.Pusher, commitDesc, p.Repo.Name, branchName, p.CompareUrl),
|
||||
}}
|
||||
|
||||
return &SlackPayload{
|
||||
|
|
Reference in a new issue