diff options
author | escoand <escoand@users.noreply.github.com> | 2020-08-26 22:27:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-26 22:27:50 +0200 |
commit | 58b6c4d277d4577baadc376deee7d306c332f420 (patch) | |
tree | 43a2220c110a2c250fe8a7f1975656ae363858c9 /bridge/whatsapp | |
parent | 27c02549c870680ea57a05757810ade80db42929 (diff) | |
download | matterbridge-msglm-58b6c4d277d4577baadc376deee7d306c332f420.tar.gz matterbridge-msglm-58b6c4d277d4577baadc376deee7d306c332f420.tar.bz2 matterbridge-msglm-58b6c4d277d4577baadc376deee7d306c332f420.zip |
Handle broadcasts as groups in Whatsapp (#1213)
The current way to get the correct JID of a WhatsApp group is to dump all JIDs to the log and grab the right one. This is working for for groups fine but not for broadcast, as they are not print out.
According to https://www.npmjs.com/package/@noamalffasy/js-whatsapp we have these possibilities:
* Chats: `[country code][phone number]@s.whatsapp.net`
* Groups: `[country code][phone number of creator]-[timestamp of group creation]@g.us`
* Broadcast Channels: `[timestamp of group creation]@broadcast`
But the bridge does currently interprets (and prints) the only second option.
Diffstat (limited to 'bridge/whatsapp')
-rw-r--r-- | bridge/whatsapp/whatsapp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/whatsapp/whatsapp.go b/bridge/whatsapp/whatsapp.go index 48b140bb..4ca89813 100644 --- a/bridge/whatsapp/whatsapp.go +++ b/bridge/whatsapp/whatsapp.go @@ -184,7 +184,7 @@ func (b *Bwhatsapp) Disconnect() error { } func isGroupJid(identifier string) bool { - return strings.HasSuffix(identifier, "@g.us") || strings.HasSuffix(identifier, "@temp") + return strings.HasSuffix(identifier, "@g.us") || strings.HasSuffix(identifier, "@temp") || strings.HasSuffix(identifier, "@broadcast") } // JoinChannel Join a WhatsApp group specified in gateway config as channel='number-id@g.us' or channel='Channel name' |