mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-08 13:20:27 +00:00
Allow empty message if we have a slack attachment
This commit is contained in:
parent
18981cb636
commit
27d886826c
@ -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
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user