diff options
author | Wim <wim@42.be> | 2023-08-05 20:43:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-05 20:43:19 +0200 |
commit | 56e7bd01ca09ad52b0c4f48f146a20a4f1b78696 (patch) | |
tree | b1355645342667209263cbd355dc0b4254f1e8fe /vendor/go.mau.fi/whatsmeow/notification.go | |
parent | 9459495484d6e06a3d46de64fccd8d06f7ccc72c (diff) | |
download | matterbridge-msglm-56e7bd01ca09ad52b0c4f48f146a20a4f1b78696.tar.gz matterbridge-msglm-56e7bd01ca09ad52b0c4f48f146a20a4f1b78696.tar.bz2 matterbridge-msglm-56e7bd01ca09ad52b0c4f48f146a20a4f1b78696.zip |
Diffstat (limited to 'vendor/go.mau.fi/whatsmeow/notification.go')
-rw-r--r-- | vendor/go.mau.fi/whatsmeow/notification.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/go.mau.fi/whatsmeow/notification.go b/vendor/go.mau.fi/whatsmeow/notification.go index 567722b5..b455785a 100644 --- a/vendor/go.mau.fi/whatsmeow/notification.go +++ b/vendor/go.mau.fi/whatsmeow/notification.go @@ -173,6 +173,11 @@ func (cli *Client) handleAccountSyncNotification(node *waBinary.Node) { cli.handlePrivacySettingsNotification(&child) case "devices": cli.handleOwnDevicesNotification(&child) + case "picture": + cli.dispatchEvent(&events.Picture{ + Timestamp: node.AttrGetter().UnixTime("t"), + JID: cli.getOwnID().ToNonAD(), + }) default: cli.Log.Debugf("Unhandled account sync item %s", child.Tag) } @@ -254,6 +259,8 @@ func (cli *Client) handleNotification(node *waBinary.Node) { go cli.handleMediaRetryNotification(node) case "privacy_token": go cli.handlePrivacyTokenNotification(node) + case "link_code_companion_reg": + go cli.tryHandleCodePairNotification(node) // Other types: business, disappearing_mode, server, status, pay, psa default: cli.Log.Debugf("Unhandled notification with type %s", notifType) |