Don't try to add empty call
This commit is contained in:
parent
27a25ce668
commit
2fe1cf4185
1 changed files with 3 additions and 2 deletions
|
@ -873,14 +873,15 @@ public class ConferenceActivity extends ListActivity implements
|
|||
((ToggleButton) findViewById(R.id.toggleMuteMic)).setChecked(false);
|
||||
}
|
||||
|
||||
if (resultCode != RESULT_OK) {
|
||||
String uri = data.getStringExtra(UriPickerActivity.EXTRA_CALLEE_URI);
|
||||
if (resultCode != RESULT_OK || TextUtils.isEmpty(uri)) {
|
||||
callToTransfer = null;
|
||||
Toast.makeText(this, R.string.uri_picking_canceled, Toast.LENGTH_LONG).show();
|
||||
eventuallyResumeConfOrCallOnPickerReturn(true);
|
||||
return;
|
||||
}
|
||||
|
||||
String uri = data.getStringExtra(UriPickerActivity.EXTRA_CALLEE_URI);
|
||||
|
||||
if (!checkValidTargetUri(uri)) {
|
||||
eventuallyResumeConfOrCallOnPickerReturn(true);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue