Fix crash & updated linphone
This commit is contained in:
parent
e74402bd30
commit
48338978e9
2 changed files with 2 additions and 2 deletions
|
@ -1306,7 +1306,7 @@ public class LinphoneActivity extends FragmentActivity implements
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (dialerFragment != null) {
|
if (dialerFragment != null) {
|
||||||
if (extras.containsKey("SipUriOrNumber")) {
|
if (extras != null && extras.containsKey("SipUriOrNumber")) {
|
||||||
if (getResources().getBoolean(R.bool.automatically_start_intercepted_outgoing_gsm_call)) {
|
if (getResources().getBoolean(R.bool.automatically_start_intercepted_outgoing_gsm_call)) {
|
||||||
((DialerFragment) dialerFragment).newOutgoingCall(extras.getString("SipUriOrNumber"));
|
((DialerFragment) dialerFragment).newOutgoingCall(extras.getString("SipUriOrNumber"));
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 3da4777e96e9a74da6ddbb424cc13ef03c4b179b
|
Subproject commit 5c7330b17f63e8d3e6f576a54681f175248a8653
|
Loading…
Reference in a new issue