Skip to content

Commit

Permalink
fix: Fixed WPP.contact.queryExists - invalid wid close #2672 (#2673)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyurboss authored Feb 8, 2025
1 parent 16dcb55 commit 6b17fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contact/functions/queryExists.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export async function queryExists(
syncUser.withId(wid);
} else {
syncQuery.withContactProtocol();
syncUser.withPhone('+' + id);
syncUser.withPhone(id);
}
syncQuery.withUser(syncUser);
syncQuery.withBusinessProtocol();
Expand Down

0 comments on commit 6b17fe8

Please sign in to comment.