1
0
Fork 0
forked from forgejo/forgejo

handle initial commit for compareUrl

This commit is contained in:
Christopher Brickley 2014-09-01 19:19:56 -04:00
parent 00a864e693
commit af0741da07
2 changed files with 11 additions and 2 deletions

View file

@ -72,9 +72,14 @@ func getSlackPushPayload(p *Payload, slack *Slack) (*SlackPayload, error) {
if len(p.Commits) == 1 {
commitString = "1 new commit"
if p.CompareUrl != "" {
commitString = SlackLinkFormatter(p.CompareUrl, commitString)
}
} else {
commitString = fmt.Sprintf("%d new commits", len(p.Commits))
commitString = SlackLinkFormatter(p.CompareUrl, commitString)
if p.CompareUrl != "" {
commitString = SlackLinkFormatter(p.CompareUrl, commitString)
}
}
repoLink := SlackLinkFormatter(p.Repo.Url, p.Repo.Name)