stream-chat 8.40.0 → 8.40.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.
- package/dist/browser.es.js +2 -3
- package/dist/browser.es.js.map +1 -1
- package/dist/browser.full-bundle.min.js +1 -1
- package/dist/browser.full-bundle.min.js.map +1 -1
- package/dist/browser.js +2 -3
- package/dist/browser.js.map +1 -1
- package/dist/index.es.js +2 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/dist/types/channel.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/channel.ts +0 -1
package/dist/browser.es.js
CHANGED
|
@@ -3589,8 +3589,7 @@ var Channel = /*#__PURE__*/function () {
|
|
|
3589
3589
|
if (message.silent) return false;
|
|
3590
3590
|
if (message.parent_id && !message.show_in_channel) return false;
|
|
3591
3591
|
if (((_message$user = message.user) === null || _message$user === void 0 ? void 0 : _message$user.id) === this.getClient().userID) return false;
|
|
3592
|
-
if ((_message$user2 = message.user) !== null && _message$user2 !== void 0 && _message$user2.id && this.getClient().userMuteStatus(message.user.id)) return false;
|
|
3593
|
-
if (message.type === 'system') return false; // Return false if channel doesn't allow read events.
|
|
3592
|
+
if ((_message$user2 = message.user) !== null && _message$user2 !== void 0 && _message$user2.id && this.getClient().userMuteStatus(message.user.id)) return false; // Return false if channel doesn't allow read events.
|
|
3594
3593
|
|
|
3595
3594
|
if (Array.isArray((_this$data4 = this.data) === null || _this$data4 === void 0 ? void 0 : _this$data4.own_capabilities) && !((_this$data5 = this.data) !== null && _this$data5 !== void 0 && _this$data5.own_capabilities.includes('read-events'))) return false; // FIXME: see #1265, adjust and count new messages even when the channel is muted
|
|
3596
3595
|
|
|
@@ -13263,7 +13262,7 @@ var StreamChat = /*#__PURE__*/function () {
|
|
|
13263
13262
|
}, {
|
|
13264
13263
|
key: "getUserAgent",
|
|
13265
13264
|
value: function getUserAgent() {
|
|
13266
|
-
return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.40.
|
|
13265
|
+
return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.40.1");
|
|
13267
13266
|
}
|
|
13268
13267
|
}, {
|
|
13269
13268
|
key: "setUserAgent",
|