fix getNumberId

This commit is contained in:
Pedro Lopez
2023-02-11 15:18:06 -08:00
parent f1607752dd
commit e8d4874b26
2 changed files with 2 additions and 2 deletions

View File

@@ -1043,7 +1043,7 @@ class Client extends EventEmitter {
return await this.pupPage.evaluate(async number => {
const wid = window.Store.WidFactory.createWid(number);
const result = await window.Store.QueryExist(wid);
const result = await window.Store.QueryExist.queryWidExists(wid);
if (!result || result.wid === undefined) return null;
return result.wid;
}, number);