fix: Correção para considerar o id do numero que esta conectado na interface
parent
d73e2c3c81
commit
cd9bd683c3
|
@ -715,7 +715,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);
|
||||||
|
@ -742,7 +742,7 @@ const handleMessage = async (msg: any, wbot: any): Promise<void> => {
|
||||||
" | ID: ",
|
" | ID: ",
|
||||||
msg.id.id
|
msg.id.id
|
||||||
);
|
);
|
||||||
}
|
// }
|
||||||
|
|
||||||
if (!isValidMsg(msg)) {
|
if (!isValidMsg(msg)) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue