Add error message about webhook (slack)
This commit is contained in:
parent
411ef2691c
commit
696c518550
|
@ -573,6 +573,10 @@ func (b *Bslack) handleMessageEvent(ev *slack.MessageEvent) (*config.Message, er
|
||||||
|
|
||||||
// Only deleted messages can have a empty username and text
|
// Only deleted messages can have a empty username and text
|
||||||
if (rmsg.Text == "" || rmsg.Username == "") && ev.SubType != messageDeleted {
|
if (rmsg.Text == "" || rmsg.Username == "") && ev.SubType != messageDeleted {
|
||||||
|
// this is probably a webhook we couldn't resolve
|
||||||
|
if ev.BotID != "" {
|
||||||
|
return nil, fmt.Errorf("probably an incoming webhook we couldn't resolve (maybe ourselves)")
|
||||||
|
}
|
||||||
return nil, fmt.Errorf("empty message and not a deleted message")
|
return nil, fmt.Errorf("empty message and not a deleted message")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue