Socket
Socket
Sign inDemoInstall

@juzi/whatsapp-web.js

Package Overview
Dependencies
185
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.16.6 to 1.16.8

2

package.json
{
"name": "@juzi/whatsapp-web.js",
"version": "1.16.6",
"version": "1.16.8",
"description": "Library for interacting with the WhatsApp Web API ",

@@ -5,0 +5,0 @@ "main": "./index.js",

@@ -186,3 +186,3 @@ 'use strict';

while (msgs.length < searchOptions.limit) {
const loadedMessages = await chat.loadEarlierMsgs();
const loadedMessages = await chat.preload();
if (!loadedMessages) break;

@@ -189,0 +189,0 @@ msgs = [...loadedMessages.filter(msgFilter), ...msgs];

@@ -70,2 +70,18 @@ 'use strict';

}
if (!window.Store.Chat.models) {
window.Store.Chat.models = window.Store.Chat._models;
}
if (!window.Store.Contact.models) {
window.Store.Contact.models = window.Store.Contact._models;
}
if (!window.Store.Blocklist.models) {
window.Store.Blocklist.models = window.Store.Blocklist._models;
}
if (!window.Store.Label.models) {
window.Store.Label.models = window.Store.Label._models;
}
};

@@ -72,0 +88,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc