@stream-io/video-client 0.0.33 → 0.0.34
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/CHANGELOG.md +7 -0
- package/dist/index.browser.es.js +3 -3
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/src/Call.d.ts +1 -1
- package/package.json +1 -1
- package/src/Call.ts +2 -2
package/dist/src/Call.d.ts
CHANGED
package/package.json
CHANGED
package/src/Call.ts
CHANGED
|
@@ -296,7 +296,7 @@ export class Call {
|
|
|
296
296
|
currentUserId &&
|
|
297
297
|
metadata.blocked_user_ids.includes(currentUserId)
|
|
298
298
|
) {
|
|
299
|
-
this.logger('info', 'Leaving call
|
|
299
|
+
this.logger('info', 'Leaving call because of being blocked');
|
|
300
300
|
await this.leave();
|
|
301
301
|
}
|
|
302
302
|
}),
|
|
@@ -1613,7 +1613,7 @@ export class Call {
|
|
|
1613
1613
|
/**
|
|
1614
1614
|
* Sends a custom event to all call participants.
|
|
1615
1615
|
*
|
|
1616
|
-
* @param
|
|
1616
|
+
* @param payload the payload to send.
|
|
1617
1617
|
*/
|
|
1618
1618
|
sendCustomEvent = async (payload: { [key: string]: any }) => {
|
|
1619
1619
|
return this.streamClient.post<SendEventResponse, SendEventRequest>(
|