Skip to content

Commit

Permalink
fix: Fixed WPP.contact.queryExists to avoid stuck in MD
Browse files Browse the repository at this point in the history
  • Loading branch information
edgardmessias committed Jan 28, 2022
1 parent 07a58dd commit 53ef3b4
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 @@ -64,7 +64,7 @@ export async function queryExists(

let result: QueryExistsResult | null = null;

if (Features.supportsFeature('MD_BACKEND')) {
if (!Features.supportsFeature('MD_BACKEND')) {
const query = await Wap.queryExist(id);
if (query.status === 200) {
result = {
Expand Down

0 comments on commit 53ef3b4

Please sign in to comment.