stream-chat 8.40.6 → 8.40.7
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 +3 -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 +3 -3
- package/dist/browser.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2 -2
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -1971,8 +1971,8 @@ export class StreamChat<StreamChatGenerics extends ExtendableGenerics = DefaultG
|
|
|
1971
1971
|
if (cid in this.activeChannels && !this.activeChannels[cid].disconnected) {
|
|
1972
1972
|
const channel = this.activeChannels[cid];
|
|
1973
1973
|
if (Object.keys(custom).length > 0) {
|
|
1974
|
-
channel.data = custom;
|
|
1975
|
-
channel._data = custom;
|
|
1974
|
+
channel.data = { ...channel.data, ...custom };
|
|
1975
|
+
channel._data = { ...channel._data, ...custom };
|
|
1976
1976
|
}
|
|
1977
1977
|
return channel;
|
|
1978
1978
|
}
|