Skip to content

Commit 7439d24

Browse files
authored
Fix error ;
1 parent dfb1ee0 commit 7439d24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/whatsapp/services/whatsapp.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3181,7 +3181,7 @@ export class WAStartupService {
31813181
const query: ContactQuery = {
31823182
where: {
31833183
owner: this.instance.name,
3184-
id: user.jid.startsWith('+') ? user.jid.substring(1) : user.jid;,
3184+
id: user.jid.startsWith('+') ? user.jid.substring(1) : user.jid,
31853185
},
31863186
};
31873187
const contacts: ContactRaw[] = await this.repository.contact.find(query);

0 commit comments

Comments
 (0)