Fixed incoming call activity not finished if cancelled by remote while at least a call is running
This commit is contained in:
parent
9a928fbb41
commit
92b3832ab8
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ public class CallIncomingActivity extends LinphoneGenericActivity {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (LinphoneManager.getCore().getCallsNb() == 0) {
|
if (state == State.End || state == State.Released) {
|
||||||
finish();
|
finish();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue