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

Commit 7759c43b authored by Tony Wickham's avatar Tony Wickham
Browse files

Fix crash when dumping before user unlocks

Bug: 150864182
Bug: 151050221
Change-Id: I29ba2ef66b4359a47f866d02306498537c45236e
parent 3f20390b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -760,7 +760,9 @@ public class TouchInteractionService extends Service implements PluginListener<O
        } else {
            // Dump everything
            FeatureFlags.dump(pw);
            if (mDeviceState.isUserUnlocked()) {
                PluginManagerWrapper.INSTANCE.get(getBaseContext()).dump(pw);
            }
            mDeviceState.dump(pw);
            if (mOverviewComponentObserver != null) {
                mOverviewComponentObserver.dump(pw);
+1 −0
Original line number Diff line number Diff line
@@ -518,6 +518,7 @@ public class RecentsAnimationDeviceState implements
                + QuickStepContract.isAssistantGestureDisabled(mSystemUiStateFlags));
        pw.println("  currentActiveRotation=" + getCurrentActiveRotation());
        pw.println("  displayRotation=" + getDisplayRotation());
        pw.println("  isUserUnlocked=" + mIsUserUnlocked);
        mOrientationTouchTransformer.dump(pw);
    }
}