5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-08 19:00:28 +00:00

Allow empty message if we have a slack attachment

This commit is contained in:
Wim 2017-09-18 23:44:16 +02:00
parent 18981cb636
commit 27d886826c

View File

@ -281,7 +281,7 @@ func (m *MMClient) WsReceiver() {
} }
// if we have file attached but the message is empty, also send it // if we have file attached but the message is empty, also send it
if msg.Post != nil { if msg.Post != nil {
if msg.Text != "" || len(msg.Post.FileIds) > 0 { if msg.Text != "" || len(msg.Post.FileIds) > 0 || msg.Post.Type == "slack_attachment" {
m.MessageChan <- msg m.MessageChan <- msg
} }
} }