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

Commit 334d03f4 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

parents 92e59dde 6e7ab2ee
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();
            });