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

Commit da63ceb7 authored by Jason Monk's avatar Jason Monk
Browse files

Guard against monkey crash

Bug: 27099281
Change-Id: I58951ee7ff5f14f5c2d60e450ed3b0fa7bf31e8e
parent 16e1e552
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ public class SettingsDrawerAdapter extends BaseAdapter {
    }

    public Tile getTile(int position) {
        return mItems.get(position).tile;
        return mItems.get(position) != null ? mItems.get(position).tile : null;
    }

    @Override