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

Commit 665cb106 authored by Eugene Susla's avatar Eugene Susla Committed by android-build-merger
Browse files

Merge "Fix Companion UI crash on configuration change" into oc-dev am: c1e3ab35

am: 7f0e3b59

Change-Id: I033327cd9ff7c24aa6f6eeba07cd96af15227ae4
parents 3df405c7 7f0e3b59
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -93,9 +93,9 @@ public class DeviceChooserActivity extends Activity {
    }

    @Override
    protected void onPause() {
        super.onPause();
        if (!isFinishing()) {
    protected void onStop() {
        super.onStop();
        if (!isFinishing() && !isChangingConfigurations()) {
            cancel();
        }
    }