fix:Correção para considerar o id da mensagem do numero que esta conectado a interface

adriano 2023-10-13 11:46:57 -03:00
parent 088274cafd
commit c57811c9f6
1 changed files with 2 additions and 2 deletions

View File

@ -438,7 +438,7 @@ const _clear_lst = () => {
}; };
const handleMessage = async (msg: any, wbot: any): Promise<void> => { const handleMessage = async (msg: any, wbot: any): Promise<void> => {
if (!msg.fromMe) { // if (!msg.fromMe) {
_clear_lst(); _clear_lst();
let index = lst.findIndex((x: any) => x.id == msg.id.id); let index = lst.findIndex((x: any) => x.id == msg.id.id);
@ -459,7 +459,7 @@ const handleMessage = async (msg: any, wbot: any): Promise<void> => {
// console.log('LIST OF ID MESSAGE lst: ', lst) // console.log('LIST OF ID MESSAGE lst: ', lst)
} // }
if (!isValidMsg(msg)) { if (!isValidMsg(msg)) {
return; return;