Insert call events as soon as you try to join

This commit is contained in:
Max Radermacher 2024-10-11 11:36:22 -05:00 committed by GitHub
parent f83637ec07
commit 754a6690c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,10 +46,8 @@ final class AdHocCallStateObserver {
switch ringRtcCall.localDeviceState.joinState {
case .notJoined:
return
case .joining:
case .pending, .joining:
joinLevel = .attempted
case .pending:
return
case .joined:
joinLevel = .joined
}