Merge pull request #2865 from matrix-org/dbkr/log_call_id

Log the call ID when receiving a call
This commit is contained in:
David Baker
2022-11-09 16:03:51 +00:00
committed by GitHub
+1 -1
View File
@@ -676,7 +676,7 @@ export class GroupCall extends TypedEventEmitter<
return;
}
logger.log(`GroupCall: incoming call from: ${opponentMemberId}`);
logger.log(`GroupCall: incoming call from: ${opponentMemberId} with ID ${newCall.callId}`);
// we are handlng this call as a PTT call, so enable PTT semantics
newCall.isPtt = this.isPtt;