slackapp: filter out ungood message types

This commit is contained in:
Chris Sexton 2019-03-11 18:11:36 -04:00
parent 026eda5b24
commit 54e0e14f41
1 changed files with 11 additions and 0 deletions

View File

@ -140,6 +140,17 @@ func (s *SlackApp) checkRingOrAdd(ts string) bool {
}
func (s *SlackApp) msgReceivd(msg *slackevents.MessageEvent) {
if msg.TimeStamp == "" {
log.Debug().
Str("type", msg.SubType).
Msg("ignoring an unhandled event type")
return
}
log.Debug().
Str("type", msg.SubType).
Msg("accepting a message")
if s.checkRingOrAdd(msg.TimeStamp) {
log.Debug().
Str("ts", msg.TimeStamp).