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

Commit a1f53320 authored by Hiroki Yamamoto's avatar Hiroki Yamamoto Committed by android-build-merger
Browse files

Merge "NFC: Reset Tap&pay summary text if default payment is not set" am: e990bf30 am: 56a8267f

am: 77452b8a

Change-Id: I19237cb1f24dc1f0b127b2bd2476ee1f3a28b0bb
parents b5fb71ac 77452b8a
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -126,10 +126,11 @@ public class PaymentSettings extends SettingsPreferenceFragment implements Index
                PaymentBackend paymentBackend = new PaymentBackend(mContext);
                paymentBackend.refresh();
                PaymentAppInfo app = paymentBackend.getDefaultApp();
                String summary = null;
                if (app != null) {
                    mSummaryLoader.setSummary(this, mContext.getString(R.string.payment_summary,
                            app.label));
                    summary = mContext.getString(R.string.payment_summary, app.label);
                }
                mSummaryLoader.setSummary(this, summary);
            }
        }
    }