Fix ringer updates
This commit is contained in:
parent
22acb57078
commit
59d9807301
2 changed files with 6 additions and 4 deletions
|
@ -567,7 +567,9 @@ export function transitionCallHistory(
|
|||
strictAssert(callHistory.callId === callId, 'callId must be same');
|
||||
strictAssert(callHistory.peerId === peerId, 'peerId must be same');
|
||||
strictAssert(
|
||||
ringerId == null || callHistory.ringerId === ringerId,
|
||||
ringerId == null ||
|
||||
callHistory.ringerId == null ||
|
||||
callHistory.ringerId === ringerId,
|
||||
'ringerId must be same if it exists'
|
||||
);
|
||||
strictAssert(callHistory.direction === direction, 'direction must be same');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue