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

Commit ce8b80b6 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix a crash on the lock screen wallet icon." into tm-dev am: 334d03f4...

Merge "Fix a crash on the lock screen wallet icon." into tm-dev am: 334d03f4 am: 49de6468 am: ded8837c am: b02df1ad

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18455851



Change-Id: Icce1e6464759b6f7fba064764980530b29155052
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents d0e7424a b02df1ad
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1195,10 +1195,10 @@ public class KeyguardBottomAreaView extends FrameLayout implements View.OnClickL
        public void onWalletCardsRetrieved(@NonNull GetWalletCardsResponse response) {
            mHasCard = !response.getWalletCards().isEmpty();
            Drawable tileIcon = mQuickAccessWalletController.getWalletClient().getTileIcon();
            post(() -> {
                if (tileIcon != null) {
                    mWalletButton.setImageDrawable(tileIcon);
                }
            post(() -> {
                updateWalletVisibility();
                updateAffordanceColors();
            });