fix shouldIgnoreJid not receiving app state keys (#792)

This commit is contained in:
vini
2024-05-18 06:52:36 -03:00
committed by GitHub
parent d196ead378
commit 51f18d82c2
2 changed files with 4 additions and 4 deletions

View File

@@ -600,7 +600,7 @@ export const makeChatsSocket = (config: SocketConfig) => {
const jid = attrs.from
const participant = attrs.participant || attrs.from
if(shouldIgnoreJid(jid)) {
if(shouldIgnoreJid(jid) && jid != '@s.whatsapp.net') {
return
}