fix: fromMe field based on message type

This commit is contained in:
gabrieljablonski 2025-04-29 21:57:32 -03:00
parent 391407eedf
commit 1e679146f7

View File

@ -77,10 +77,11 @@ class Whatsapp::Providers::WhatsappBaileysService < Whatsapp::Providers::BaseSer
end end
def reaction_message_content def reaction_message_content
reply_to = Message.find(@message.in_reply_to)
{ {
react: { key: { id: @message.in_reply_to_external_id, react: { key: { id: reply_to.source_id,
remoteJid: remote_jid, remoteJid: remote_jid,
fromMe: true }, fromMe: reply_to.message_type == 'outgoing' },
text: @message.content } text: @message.content }
} }
end end