Handles safety number changes while in a call
This commit is contained in:
parent
561baf6309
commit
318013e83d
26 changed files with 387 additions and 162 deletions
|
@ -667,6 +667,14 @@ export class CallingClass {
|
|||
return groupCall.getVideoSource(demuxId);
|
||||
}
|
||||
|
||||
public resendGroupCallMediaKeys(conversationId: string): void {
|
||||
const groupCall = this.getGroupCall(conversationId);
|
||||
if (!groupCall) {
|
||||
throw new Error('Could not find matching call');
|
||||
}
|
||||
groupCall.resendMediaKeys();
|
||||
}
|
||||
|
||||
private syncGroupCallToRedux(
|
||||
conversationId: string,
|
||||
groupCall: GroupCall
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue