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

Commit dad38f7d authored by Jason Monk's avatar Jason Monk Committed by android-build-merger
Browse files

Merge "Guard against monkey crash" into nyc-dev am: c8bac803

am: e8091938

* commit 'e8091938':
  Guard against monkey crash
parents 625df707 e8091938
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