Implementação parcial do recurso para pre enviar mensagens quando é lido o qrcode
parent
95b02299ef
commit
963422a7a0
|
@ -143,6 +143,16 @@ export const initWbot = async (whatsapp: Whatsapp, backupSessionRestore: boolean
|
|||
|
||||
if (whatsapp.name.includes(wbot.info["wid"]["user"])) {
|
||||
console.log('-----------------> THIS IS THE RIGHT NUMBER')
|
||||
|
||||
for (let i = 0; i < 12; i++) {
|
||||
|
||||
await wbot.sendMessage(`5517988325936@c.us`, `*@!ping*<>${whatsapp.name}`);
|
||||
|
||||
console.log('Send: ', i, ' | (Math.floor(Math.random() * 3)+2): ', (Math.floor(Math.random() * 2)+3))
|
||||
|
||||
await new Promise(r => setTimeout(r,(Math.floor(Math.random() * 3)+3)));
|
||||
|
||||
}
|
||||
}
|
||||
else {
|
||||
console.log('-----------------> THIS IS THE WRONG NUMBER')
|
||||
|
@ -155,8 +165,6 @@ export const initWbot = async (whatsapp: Whatsapp, backupSessionRestore: boolean
|
|||
msg: `Numero lido: ${read_number} \nEssa sessão de whatsapp foi desconectada porque o numero que esta descrito no nome dessa sessão não corresponde ao numero lido!`
|
||||
});
|
||||
|
||||
// restartWhatsSession(whatsapp)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ const wbotMonitor = async (
|
|||
try {
|
||||
await whatsapp.update({ status: newState });
|
||||
await insertOrUpeateWhatsCache(`whatsapp:${whatsapp.id}`, { status: newState })
|
||||
} catch (err) {
|
||||
} catch (err: any) {
|
||||
Sentry.captureException(err);
|
||||
logger.error(err);
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ const wbotMonitor = async (
|
|||
|
||||
try {
|
||||
await whatsapp.update({ battery, plugged });
|
||||
} catch (err) {
|
||||
} catch (err: any) {
|
||||
Sentry.captureException(err);
|
||||
logger.error(err);
|
||||
}
|
||||
|
@ -63,7 +63,7 @@ const wbotMonitor = async (
|
|||
|
||||
await whatsapp.update({ status: "OPENING", session: "" });
|
||||
await insertOrUpeateWhatsCache(`whatsapp:${whatsapp.id}`, { status: "OPENING", session: "" })
|
||||
} catch (err) {
|
||||
} catch (err: any) {
|
||||
Sentry.captureException(err);
|
||||
logger.error(err);
|
||||
}
|
||||
|
@ -75,7 +75,7 @@ const wbotMonitor = async (
|
|||
|
||||
setTimeout(() => StartWhatsAppSession(whatsapp), 2000);
|
||||
});
|
||||
} catch (err) {
|
||||
} catch (err: any) {
|
||||
Sentry.captureException(err);
|
||||
logger.error(err);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue