select answer should be used for outgoing calls.

This commit is contained in:
David Langley 2021-12-02 18:35:51 +00:00
parent 7c4460b812
commit f3b3c880d0
1 changed files with 13 additions and 10 deletions

View File

@ -203,8 +203,9 @@ internal class MxCallImpl(
override fun selectAnswer() {
Timber.tag(loggerTag.value).v("select answer $callId")
if (isOutgoing) return
state = CallState.Answering
if (isOutgoing) {
// This is an outgoing call, select the remote client that answered.
// state is still DIALING.
CallSelectAnswerContent(
callId = callId,
partyId = ourPartyId,
@ -215,6 +216,8 @@ internal class MxCallImpl(
.also { eventSenderProcessor.postEvent(it) }
}
}
override suspend fun transfer(targetUserId: String,
targetRoomId: String?,
createCallId: String?,