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);
|
||||
|
||||
}
|
||||
else if (botInfo.isOnQueue && !msg.fromMe && msg.body=='0' && ticket.status == 'pending'){
|
||||
|
||||
console.log('Entrou onde não devia..........')
|
||||
else if (botInfo.isOnQueue && !msg.fromMe && msg.body == '0' && ticket.status == 'pending' && ticket.queueId ) {
|
||||
|
||||
let choosenQueue = await ShowQueueService(botInfo.botQueueId);
|
||||
|
||||
|
|
Loading…
Reference in New Issue