mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
Don't remove call when we call hangup
as hopefully explained by comment
This commit is contained in:
parent
faf2922b1b
commit
4c50125e9d
1 changed files with 2 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue