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

Commit 53159324 authored by Bruno Martins's avatar Bruno Martins
Browse files

NfcTile: Avoid NPE during boot up phase

 * NFC status can't be retrieved before the service starts.

Change-Id: I4bd4fbb5e0d49786edde7ad43a87463e37979774
parent 73e7a1a7
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);