Commit b2a1f667 authored by Varun Patil's avatar Varun Patil

fix(map): Truncate number of search locations to 15

parent 07b303c6
......@@ -230,6 +230,10 @@ public class FuzzySearchAdapter extends BaseAdapter {
}
resultlist = sortByScore(map);
}
if (resultlist != null && resultlist.size() > 16) {
resultlist = resultlist.subList(0, 15);
}
notifyDataSetChanged();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment