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

Commit b02df1ad 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

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



Change-Id: I0975d54cb22f7b5f99b840b2bede7d46393711fd
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 0bbc9032 ded8837c
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();
            });