mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Fix call activity launched twice
This commit is contained in:
parent
9eb904341e
commit
7e748014a0
1 changed files with 2 additions and 2 deletions
|
|
@ -102,7 +102,7 @@ public class CallOutgoingActivity extends Activity implements OnClickListener{
|
|||
finish();
|
||||
}
|
||||
|
||||
if (call == mCall && (State.StreamsRunning == state || State.Connected == state)){
|
||||
if (call == mCall && (State.Connected == state)){
|
||||
if (!LinphoneActivity.isInstanciated()) {
|
||||
return;
|
||||
}
|
||||
|
|
@ -113,7 +113,7 @@ public class CallOutgoingActivity extends Activity implements OnClickListener{
|
|||
LinphoneActivity.instance().startIncallActivity(mCall);
|
||||
}
|
||||
finish();
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue