Correção do bug que envia 2 uras quando o usuario digita 0 após ser transferido para uma fila

pull/20/head
adriano 2022-11-25 10:51:06 -03:00
parent 991d958f20
commit ddf026a168
1 changed files with 6 additions and 8 deletions

View File

@ -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);