Merge pull request #4637 from vector-im/feature/dla/outgoing_pstn_call_fails
Feature/dla/outgoing pstn call fails
This commit is contained in:
commit
f1d8b9e974
|
@ -0,0 +1 @@
|
||||||
|
Update log warning for call selection during voip calls.
|
|
@ -205,8 +205,8 @@ internal class MxCallImpl(
|
||||||
Timber.tag(loggerTag.value).v("select answer $callId")
|
Timber.tag(loggerTag.value).v("select answer $callId")
|
||||||
if (!isOutgoing) return
|
if (!isOutgoing) return
|
||||||
// This is an outgoing call, select the remote client that answered.
|
// This is an outgoing call, select the remote client that answered.
|
||||||
if (state != CallState.Dialing) {
|
if (state != CallState.Dialing && state !is CallState.Connected) {
|
||||||
Timber.tag(loggerTag.value).w("Expected state is CallState.Dialing got $state.")
|
Timber.tag(loggerTag.value).w("Expected state is CallState.Dialing or CallState.Connected got $state.")
|
||||||
}
|
}
|
||||||
CallSelectAnswerContent(
|
CallSelectAnswerContent(
|
||||||
callId = callId,
|
callId = callId,
|
||||||
|
|
Loading…
Reference in New Issue