merge fix

This commit is contained in:
Pedro Lopez
2023-02-11 15:22:30 -08:00
parent 842a342f72
commit 617e0b89d5

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.queryWidExists(wid);
const result = await window.Store.QueryExist(wid);
if (!result || result.wid === undefined) return null;
return result.wid;
}, number);