feat: add group suport in api session
parent
1c93c16f84
commit
b9f8bfc8d5
|
@ -885,11 +885,15 @@ async function handleMessage(msg) {
|
|||
|
||||
if (msg.fromMe) {
|
||||
|
||||
console.log('MSG FROM ME')
|
||||
|
||||
msgContact = await client.getContactById(msg.to)
|
||||
|
||||
}
|
||||
else {
|
||||
|
||||
console.log('MSG FROM CLIENT')
|
||||
|
||||
console.log('################# RECEIVING MESSAGE FROM: ', msg.from, ' to ', msg.to)
|
||||
|
||||
msgContact = await msg.getContact()
|
||||
|
@ -912,10 +916,10 @@ async function handleMessage(msg) {
|
|||
msgContact: msgContact,
|
||||
chat: chat,
|
||||
quotedMsg: quotedMsg ? quotedMsg.id.id : null,
|
||||
media: media
|
||||
media: media,
|
||||
getContactById: msg.fromMe ? await client.getContactById(msg.to) : await client.getContactById(msg.from)
|
||||
}
|
||||
|
||||
|
||||
socketIo.emit("message_create", data)
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue