forked from organicmaps/organicmaps
Fix for search category event param name.
This commit is contained in:
parent
c8fe5e913c
commit
7aacec25e2
1 changed files with 2 additions and 3 deletions
|
@ -305,10 +305,9 @@ public class SearchAdapter extends BaseAdapter
|
|||
}
|
||||
break;
|
||||
case CATEGORY_TYPE:
|
||||
final String category = getCategoryName(mCategories[position]);
|
||||
Statistics.INSTANCE.trackSearchCategoryClicked(category);
|
||||
Statistics.INSTANCE.trackSearchCategoryClicked(mCategories[position]);
|
||||
|
||||
return category + ' ';
|
||||
return getCategoryName(mCategories[position]) + ' ';
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
Loading…
Add table
Reference in a new issue