Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 85f7ca65 authored by Yorke Lee's avatar Yorke Lee
Browse files

Fix NPE when hitting back in InCallActivity

Bug: 20921372

Change-Id: I25969a56eb293f20e3dfeaccf6f929177da00e85
parent ed848814
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -357,7 +357,7 @@ public class InCallActivity extends Activity implements FragmentDisplayManager {
        // in-call UI:

        if ((mConferenceManagerFragment == null || !mConferenceManagerFragment.isVisible())
                && !mCallCardFragment.isVisible()) {
                && (mCallCardFragment == null || !mCallCardFragment.isVisible())) {
            return;
        }