Fix early ringing state on slow connections.

This commit is contained in:
Cody Henthorne
2022-03-16 13:28:01 -04:00
parent 3a8591fdfb
commit 4c7bd80f72
2 changed files with 2 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ class AndroidCallConnection(private val context: Context, val recipientId: Recip
override fun onShowIncomingCallUi() {
Log.i(TAG, "onShowIncomingCallUi()")
WebRtcCallService.update(context, CallNotificationBuilder.TYPE_INCOMING_RINGING, recipientId)
WebRtcCallService.update(context, CallNotificationBuilder.TYPE_INCOMING_CONNECTING, recipientId)
setRinging()
}