We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e61dea0 commit 9aa3083Copy full SHA for 9aa3083
pkg/connector/userinfo.go
@@ -28,7 +28,7 @@ func (wa *WhatsAppClient) contactToUserInfo(ctx context.Context, jid types.JID,
28
ui := &bridgev2.UserInfo{
29
Name: ptr.Ptr(wa.Main.Config.FormatDisplayname(jid, contact)),
30
IsBot: ptr.Ptr(jid.IsBot()),
31
- Identifiers: []string{fmt.Sprintf("tel:%s", jid.User)},
+ Identifiers: []string{fmt.Sprintf("tel:+%s", jid.User)},
32
}
33
if getAvatar {
34
ui.ExtraUpdates = bridgev2.MergeExtraUpdaters(ui.ExtraUpdates, markAvatarFetchAttempted)
0 commit comments