Correção do bug que envia 2 uras quando o usuario digita 0 após ser transferido para uma fila
parent
991d958f20
commit
ddf026a168
|
@ -1002,9 +1002,7 @@ const handleMessage = async (
|
||||||
await sendDialogflowAwswer(wbot, ticket, msg, contact, chat);
|
await sendDialogflowAwswer(wbot, ticket, msg, contact, chat);
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (botInfo.isOnQueue && !msg.fromMe && msg.body=='0' && ticket.status == 'pending'){
|
else if (botInfo.isOnQueue && !msg.fromMe && msg.body == '0' && ticket.status == 'pending' && ticket.queueId ) {
|
||||||
|
|
||||||
console.log('Entrou onde não devia..........')
|
|
||||||
|
|
||||||
let choosenQueue = await ShowQueueService(botInfo.botQueueId);
|
let choosenQueue = await ShowQueueService(botInfo.botQueueId);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue