Consider own join time for group call missing media key check
Co-authored-by: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com>
This commit is contained in:
parent
f9b2261783
commit
ec9041937f
11 changed files with 82 additions and 15 deletions
|
@ -63,6 +63,7 @@ type PropsType = {
|
|||
i18n: LocalizerType;
|
||||
imageDataCache: React.RefObject<CallingImageDataCache>;
|
||||
isCallReconnecting: boolean;
|
||||
joinedAt: number | null;
|
||||
remoteParticipants: ReadonlyArray<GroupCallRemoteParticipantType>;
|
||||
setGroupCallVideoRequest: (
|
||||
_: Array<GroupCallVideoRequest>,
|
||||
|
@ -115,6 +116,7 @@ export function GroupCallRemoteParticipants({
|
|||
imageDataCache,
|
||||
i18n,
|
||||
isCallReconnecting,
|
||||
joinedAt,
|
||||
remoteParticipants,
|
||||
setGroupCallVideoRequest,
|
||||
remoteAudioLevels,
|
||||
|
@ -359,6 +361,7 @@ export function GroupCallRemoteParticipants({
|
|||
remoteParticipantsCount={remoteParticipants.length}
|
||||
isActiveSpeakerInSpeakerView={isInSpeakerView}
|
||||
isCallReconnecting={isCallReconnecting}
|
||||
joinedAt={joinedAt}
|
||||
/>
|
||||
);
|
||||
});
|
||||
|
@ -517,6 +520,7 @@ export function GroupCallRemoteParticipants({
|
|||
imageDataCache={imageDataCache}
|
||||
i18n={i18n}
|
||||
isCallReconnecting={isCallReconnecting}
|
||||
joinedAt={joinedAt}
|
||||
onClickRaisedHand={onClickRaisedHand}
|
||||
onParticipantVisibilityChanged={onParticipantVisibilityChanged}
|
||||
overflowedParticipants={overflowedParticipants}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue