3
0
mirror of https://github.com/42wim/matterbridge.git synced 2024-12-26 21:22:35 +01:00

Force Slack link unfurling ()

This commit is contained in:
Duco van Amstel 2019-03-12 21:56:43 +00:00 committed by Wim
parent 74699a8262
commit b638f7037a

View File

@ -424,7 +424,11 @@ func (b *Bslack) postMessage(msg *config.Message, channelInfo *slack.Channel) (s
return "", nil
}
messageOptions := b.prepareMessageOptions(msg)
messageOptions = append(messageOptions, slack.MsgOptionText(msg.Text, false))
messageOptions = append(
messageOptions,
slack.MsgOptionText(msg.Text, false),
slack.MsgOptionEnableLinkUnfurl(),
)
for {
_, id, err := b.rtm.PostMessage(channelInfo.ID, messageOptions...)
if err == nil {