whatsapp-web.js 1.33.0 → 1.33.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Client.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whatsapp-web.js",
3
- "version": "1.33.0",
3
+ "version": "1.33.1",
4
4
  "description": "Library for interacting with the WhatsApp Web API ",
5
5
  "main": "./index.js",
6
6
  "typings": "./index.d.ts",
package/src/Client.js CHANGED
@@ -234,7 +234,7 @@ class Client extends EventEmitter {
234
234
  * @type {ClientInfo}
235
235
  */
236
236
  this.info = new ClientInfo(this, await this.pupPage.evaluate(() => {
237
- return { ...window.Store.Conn.serialize(), wid: window.Store.User.getMeUser() };
237
+ return { ...window.Store.Conn.serialize(), wid: window.Store.User.getMaybeMeUser() };
238
238
  }));
239
239
 
240
240
  this.interface = new InterfaceController(this);