Better handle group call ring race conditions

This commit is contained in:
Evan Hahn
2022-11-16 20:52:04 -06:00
committed by GitHub
parent 629b5c3f6a
commit a88243f26d
9 changed files with 169 additions and 116 deletions

View File

@@ -196,9 +196,3 @@ export type ChangeIODevicePayloadType =
| { type: CallingDeviceType.CAMERA; selectedDevice: string }
| { type: CallingDeviceType.MICROPHONE; selectedDevice: AudioDevice }
| { type: CallingDeviceType.SPEAKER; selectedDevice: AudioDevice };
export enum ProcessGroupCallRingRequestResult {
ShouldRing,
RingWasPreviouslyCanceled,
ThereIsAnotherActiveRing,
}