Merge pull request #6131 from matrix-org/dbkr/log_when_already_a_call

Log when we ignore a second call in a room
pull/21833/head
David Baker 2021-06-02 11:13:46 +01:00 committed by GitHub
commit bc2f068e1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -802,7 +802,10 @@ export default class CallHandler extends EventEmitter {
const mappedRoomId = CallHandler.sharedInstance().roomIdForCall(call);
if (this.getCallForRoom(mappedRoomId)) {
// ignore multiple incoming calls to the same room
console.log(
"Got incoming call for room " + mappedRoomId +
" but there's already a call for this room: ignoring",
);
return;
}