Fix speaker view not auto switching on presenting

This commit is contained in:
Jamie Kyle 2023-08-30 14:34:58 -07:00 committed by GitHub
parent 67a51415d0
commit a4fffdfbfb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 1 deletions

View file

@ -3,7 +3,7 @@
import type { AudioDevice } from '@signalapp/ringrtc';
import type { ConversationType } from '../state/ducks/conversations';
import type { ServiceIdString } from './ServiceId';
import type { AciString, ServiceIdString } from './ServiceId';
// These are strings (1) for the database (2) for Storybook.
export enum CallMode {
@ -135,6 +135,7 @@ export enum GroupCallJoinState {
}
export type GroupCallRemoteParticipantType = ConversationType & {
aci: AciString;
demuxId: number;
hasRemoteAudio: boolean;
hasRemoteVideo: boolean;