diff --git a/whappdc/message_handlers.go b/whappdc/message_handlers.go index 2f1d7a5..cca9d0f 100644 --- a/whappdc/message_handlers.go +++ b/whappdc/message_handlers.go @@ -268,7 +268,7 @@ func DetermineSenderName(b *core.BridgeContext, info whatsapp.MessageInfo) strin } contact, ok := b.WhappConn.Store.Contacts[senderName] - if ok { + if ok && contact.Name != "" { senderName = contact.Name }