Add Title from attachment slack message (#446)

pull/450/head
Maxim 6 years ago committed by Wim
parent bd9ea7a88d
commit 594492fbdd

@ -503,7 +503,10 @@ func (b *Bslack) handleMessageEvent(ev *slack.MessageEvent) (*config.Message, er
if rmsg.Text == "" {
for _, attach := range ev.Attachments {
if attach.Text != "" {
rmsg.Text = attach.Text
if attach.Title != "" {
rmsg.Text = attach.Title + "\n"
}
rmsg.Text += attach.Text
} else {
rmsg.Text = attach.Fallback
}

Loading…
Cancel
Save