Pause ringing more aggressively

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-08-26 15:00:56 +02:00
parent e4f8c795bc
commit 242b4e73b9
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D

View file

@ -886,6 +886,8 @@ export default class CallHandler extends EventEmitter {
break; break;
case 'hangup': case 'hangup':
case 'reject': case 'reject':
this.stopRingingIfPossible(this.calls.get(payload.room_id).callId);
if (!this.calls.get(payload.room_id)) { if (!this.calls.get(payload.room_id)) {
return; // no call to hangup return; // no call to hangup
} }
@ -898,11 +900,15 @@ export default class CallHandler extends EventEmitter {
// the hangup event away) // the hangup event away)
break; break;
case 'hangup_all': case 'hangup_all':
this.stopRingingIfPossible(this.calls.get(payload.room_id).callId);
for (const call of this.calls.values()) { for (const call of this.calls.values()) {
call.hangup(CallErrorCode.UserHangup, false); call.hangup(CallErrorCode.UserHangup, false);
} }
break; break;
case 'answer': { case 'answer': {
this.stopRingingIfPossible(this.calls.get(payload.room_id).callId);
if (!this.calls.has(payload.room_id)) { if (!this.calls.has(payload.room_id)) {
return; // no call to answer return; // no call to answer
} }