Don't remove call when we call hangup

as hopefully explained by comment
pull/21833/head
David Baker 2020-12-04 20:22:01 +00:00
parent faf2922b1b
commit 4c50125e9d
1 changed files with 2 additions and 1 deletions

View File

@ -566,7 +566,8 @@ export default class CallHandler {
} else {
this.calls.get(payload.room_id).hangup(CallErrorCode.UserHangup, false);
}
this.removeCallForRoom(payload.room_id);
// don't remove the call yet: let the hangup event handler do it (otherwise it will throw
// the hangup event away)
break;
case 'answer': {
if (!this.calls.has(payload.room_id)) {