@based/client 4.6.2 → 4.6.3

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.
@@ -163,7 +163,7 @@ const addChannelPublishIdentifier = (client, name, id, payload) => {
163
163
  };
164
164
  exports.addChannelPublishIdentifier = addChannelPublishIdentifier;
165
165
  const addToPublishQueue = (client, id, payload) => {
166
- if (client.publishQueue.length > 150) {
166
+ if (client.publishQueue.length > 500) {
167
167
  client.publishQueue.shift();
168
168
  }
169
169
  client.publishQueue.push([id, payload]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@based/client",
3
- "version": "4.6.2",
3
+ "version": "4.6.3",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {