Remoção de console.log
parent
10baa9de05
commit
79755d8c52
|
@ -4,7 +4,6 @@ import Ticket from "../models/Ticket";
|
||||||
|
|
||||||
function sendWhatsAppMessageSocket(ticket: Ticket, body: string, quotedMsgSerializedId?: string | undefined) {
|
function sendWhatsAppMessageSocket(ticket: Ticket, body: string, quotedMsgSerializedId?: string | undefined) {
|
||||||
|
|
||||||
|
|
||||||
const io = getIO();
|
const io = getIO();
|
||||||
|
|
||||||
io.to(`session_${ticket.whatsappId.toString()}`).emit("send_message", {
|
io.to(`session_${ticket.whatsappId.toString()}`).emit("send_message", {
|
||||||
|
|
|
@ -560,11 +560,6 @@ const handleMessage = async (
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
|
|
||||||
if(msg.fromMe){
|
|
||||||
console.log('====> msg.fromMe: ',msg.fromMe)
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if (msg.hasMedia) {
|
if (msg.hasMedia) {
|
||||||
await verifyMediaMessage(msg, ticket, contact, wbot.media, wbot.quotedMsg);
|
await verifyMediaMessage(msg, ticket, contact, wbot.media, wbot.quotedMsg);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue