diff --git a/main.go b/main.go index edd6f5e..60b0bdc 100644 --- a/main.go +++ b/main.go @@ -213,6 +213,10 @@ func main() { } dispatchMessage(bot, update.Message) replyWithMessage(bot, update.Message, viper.GetString("MsgThankYouMedia")) + } else { + log.Printf("[%s] cannot handle this type of message", username) + replyToCommandWithMessage(bot, update.Message, viper.GetString("MsgDoNotUnderstand")) + continue } } }