Add extra debug of SubMessage to empty messages error (slack). #709
This commit is contained in:
parent
5af1d80055
commit
077b818d82
|
@ -192,6 +192,9 @@ func (b *Bslack) handleMessageEvent(ev *slack.MessageEvent) (*config.Message, er
|
||||||
// This is probably a webhook we couldn't resolve.
|
// This is probably a webhook we couldn't resolve.
|
||||||
return nil, fmt.Errorf("message handling resulted in an empty bot message (probably an incoming webhook we couldn't resolve): %#v", ev)
|
return nil, fmt.Errorf("message handling resulted in an empty bot message (probably an incoming webhook we couldn't resolve): %#v", ev)
|
||||||
}
|
}
|
||||||
|
if ev.SubMessage != nil {
|
||||||
|
return nil, fmt.Errorf("message handling resulted in an empty message: %#v with submessage %#v", ev, ev.SubMessage)
|
||||||
|
}
|
||||||
return nil, fmt.Errorf("message handling resulted in an empty message: %#v", ev)
|
return nil, fmt.Errorf("message handling resulted in an empty message: %#v", ev)
|
||||||
}
|
}
|
||||||
return rmsg, nil
|
return rmsg, nil
|
||||||
|
|
Loading…
Reference in New Issue