PushName of a group Participant? #284
Unanswered
alehsoares
asked this question in
Q&A
Replies: 2 comments
-
You mean get the pushName of a jid at any time or the pushName upon message upsert? Even if the message is fired from a group the payload will still have message.pushName attr. socket.ev.on('messages.upsert', async (m) => {
const message = m.messages[0];
console.log(message);
if (m.type !== 'notify') return;
console.log(message.pushName);
}); |
Beta Was this translation helpful? Give feedback.
0 replies
-
I'd like get the pushName of a jid at any time |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to get the PushName of a group Participant?
Beta Was this translation helpful? Give feedback.
All reactions