Fixes calling participants list popup

This commit is contained in:
Josh Perez 2023-07-21 18:12:23 -04:00 committed by GitHub
parent 716f852970
commit 7267391de4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View file

@ -4208,7 +4208,7 @@ button.module-image__border-overlay:focus {
inset-inline-start: 0;
position: absolute;
top: 0;
z-index: $z-index-popup;
z-index: $z-index-calling;
}
&__title {

View file

@ -9,7 +9,7 @@
top: 22px;
user-select: none;
width: 100%;
z-index: $z-index-popup;
z-index: $z-index-calling;
padding-inline: 1rem;
}

View file

@ -1783,6 +1783,8 @@ export class CallingClass {
await processGroupCallRingCancellation(ringId);
}
this.stopCallingLobby();
if (shouldRing) {
log.info('handleGroupCallRingUpdate: ringing');
this.reduxInterface?.receiveIncomingGroupCall({
@ -1886,6 +1888,8 @@ export class CallingClass {
this.attachToCall(conversation, call);
this.stopCallingLobby();
this.reduxInterface.receiveIncomingDirectCall({
conversationId: conversation.id,
isVideoCall: call.isVideoCall,