commit | 1f15b34ba96a9c16fe3ed875e7fdd3c98bad0ef0 | [log] [tgz] |
---|---|---|
author | micky387 <mickaelsaibi@free.fr> | Mon Dec 09 18:22:59 2024 -0500 |
committer | micky387 <mickaelsaibi@free.fr> | Fri Jan 24 08:33:25 2025 -0500 |
tree | a71f0bce8e3ad185039e7219da9b629123f468cd | |
parent | b1e471f9ae6ba5b016100feeadca9558a9b9938e [diff] |
base: Fixup! add missing handling of DISMISS_KEYGUARD_EXTRA_INTENT Ater https://android.googlesource.com/platform/frameworks/base/+/c103b622b3890084bc257497d2d23f6c27a893c3 [formerly ce7fbc390646ed39b7ba5d4f3fef9a0a19986876]%5E%21/#F10 Change-Id: I709470137c8a943017c4690a9c37754051715028 Former-commit-id: b2e2f7bd560171a9b8d18ec192b904b7ce59e3c0
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java index 983bbee..a03536e 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java
@@ -1941,7 +1941,11 @@ } else if (OmniUtils.ACTION_DISMISS_KEYGUARD.equals(action)) { if (intent.hasExtra(OmniUtils.DISMISS_KEYGUARD_EXTRA_INTENT)) { Intent launchIntent = (Intent) intent.getParcelableExtra(OmniUtils.DISMISS_KEYGUARD_EXTRA_INTENT); - mActivityStarter.startActivityDismissingKeyguard(launchIntent, true, true); + mActivityStarter.startActivityDismissingKeyguard( + launchIntent, + true /* onlyProvisioned */, + true /* dismissShade */, + null /* customMessage */); } } Trace.endSection();