stream-chat 8.40.5 → 8.40.6

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.
package/dist/browser.js CHANGED
@@ -8660,7 +8660,7 @@ var ThreadManager = /*#__PURE__*/function () {
8660
8660
 
8661
8661
  _context.next = 11;
8662
8662
  return _this.queryThreads({
8663
- limit: Math.min(limit, MAX_QUERY_THREADS_LIMIT)
8663
+ limit: Math.min(limit, MAX_QUERY_THREADS_LIMIT) || MAX_QUERY_THREADS_LIMIT
8664
8664
  });
8665
8665
 
8666
8666
  case 11:
@@ -13355,7 +13355,7 @@ var StreamChat = /*#__PURE__*/function () {
13355
13355
  }, {
13356
13356
  key: "getUserAgent",
13357
13357
  value: function getUserAgent() {
13358
- return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.40.5");
13358
+ return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.40.6");
13359
13359
  }
13360
13360
  }, {
13361
13361
  key: "setUserAgent",