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
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ func (m *MMClient) WsReceiver() {
}
// if we have file attached but the message is empty, also send it
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
}
}