Fix group call notification on group call peek
This commit is contained in:
parent
19049c252e
commit
39d15ba620
1 changed files with 4 additions and 4 deletions
|
@ -1231,12 +1231,12 @@ export class CallingClass {
|
|||
let updateMessageState = GroupCallUpdateMessageState.SentNothing;
|
||||
const updateCallHistoryOnLocalChanged =
|
||||
callMode === CallMode.Group
|
||||
? this.updateCallHistoryForGroupCallOnLocalChanged
|
||||
: this.updateCallHistoryForAdhocCall;
|
||||
? this.updateCallHistoryForGroupCallOnLocalChanged.bind(this)
|
||||
: this.updateCallHistoryForAdhocCall.bind(this);
|
||||
const updateCallHistoryOnPeek =
|
||||
callMode === CallMode.Group
|
||||
? this.updateCallHistoryForGroupCallOnPeek
|
||||
: this.updateCallHistoryForAdhocCall;
|
||||
? this.updateCallHistoryForGroupCallOnPeek.bind(this)
|
||||
: this.updateCallHistoryForAdhocCall.bind(this);
|
||||
const logId =
|
||||
callMode === CallMode.Group
|
||||
? `groupv2(${conversationId})`
|
||||
|
|
Loading…
Add table
Reference in a new issue