Remove bad error trace.
This commit is contained in:
parent
b6b080e648
commit
d953b11fa2
1 changed files with 3 additions and 1 deletions
|
@ -88,7 +88,9 @@ public abstract class AbstractCalleesActivity extends ListActivity implements Li
|
||||||
|
|
||||||
protected final boolean finishIfAutoRestartAfterACrash(Bundle savedInstanceState) {
|
protected final boolean finishIfAutoRestartAfterACrash(Bundle savedInstanceState) {
|
||||||
if (!LinphoneManager.isInstanciated() || LinphoneManager.getLc().getCallsNb() == 0) {
|
if (!LinphoneManager.isInstanciated() || LinphoneManager.getLc().getCallsNb() == 0) {
|
||||||
|
if (!LinphoneManager.isInstanciated()) {
|
||||||
Log.e("No service running: avoid crash by finishing ", this.getClass().getName());
|
Log.e("No service running: avoid crash by finishing ", this.getClass().getName());
|
||||||
|
}
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
finish();
|
finish();
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue