Skip to content
Snippets Groups Projects
Commit ad41c226 authored by Vitalii Nikitchyn's avatar Vitalii Nikitchyn Committed by Vitalii Nikitchyn
Browse files

telecom API bugfix

Change-Id: I3d348ad0e72deb2c9610735a1e16c724f7b26bb3
parent b81af111
No related branches found
No related tags found
No related merge requests found
......@@ -513,6 +513,10 @@ abstract class CallService(
try {
synchronized(calls) {
parseCallState(accountId, callId, newState, callDetails)?.let { call ->
if (newState == "INCOMING") {
Log.d(TAG, "call state changed: ignoring ringing call, waiting for signal")
return
}
callSubject.onNext(call)
if (call.callStatus === CallStatus.OVER) {
calls.remove(call.daemonIdString)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment