From dbad923c2d9fd64fcc4233164d38a5b58d7eab16 Mon Sep 17 00:00:00 2001 From: Hugo Thunnissen Date: Tue, 4 Feb 2020 23:04:48 +0100 Subject: [PATCH] Ignore info messages --- botcommands/whapp-bridge.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/botcommands/whapp-bridge.go b/botcommands/whapp-bridge.go index 9a5ca36..a9453a5 100644 --- a/botcommands/whapp-bridge.go +++ b/botcommands/whapp-bridge.go @@ -51,6 +51,10 @@ func (b *WhappBridge) Execute( return } + if m.IsInfo() { + return + } + text := whatsapp.TextMessage{ Info: whatsapp.MessageInfo{ RemoteJid: *JID,