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

Commit 36285374 authored by Bruno Martins's avatar Bruno Martins Committed by android-build-merger
Browse files

Merge "NfcTile: Avoid NPE during boot up phase"

am: 3a419fe2

Change-Id: I352028c1974c38f2a88ffb6bdc49da7bd28d2204
parents 1494c011 3a419fe2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -98,6 +98,8 @@ public class NfcTile extends QSTileImpl<BooleanState> {
    protected void handleUpdateState(BooleanState state, Object arg) {
        final Drawable mEnable = mContext.getDrawable(R.drawable.ic_qs_nfc_enabled);
        final Drawable mDisable = mContext.getDrawable(R.drawable.ic_qs_nfc_disabled);

        if (getAdapter() == null) return;
        state.value = getAdapter().isEnabled();
        state.label = mContext.getString(R.string.quick_settings_nfc_label);
        state.icon = new DrawableIcon(state.value ? mEnable : mDisable);