From 617e0b89d577ce508a3d8d37d661f11a9a9eded0 Mon Sep 17 00:00:00 2001 From: Pedro Lopez Date: Sat, 11 Feb 2023 15:22:30 -0800 Subject: [PATCH] merge fix --- src/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.js b/src/Client.js index 52ea96f..7a09d7a 100644 --- a/src/Client.js +++ b/src/Client.js @@ -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);