mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
Add Title from attachment slack message (#446)
This commit is contained in:
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…
Reference in New Issue
Block a user