mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 01:53:31 +00:00
feat: Removed limit of 5 search suggestions
This commit is contained in:
parent
3b80725673
commit
b5e5537691
3 changed files with 7 additions and 9 deletions
|
|
@ -56,7 +56,7 @@ public class SearchViewModel extends AndroidViewModel {
|
|||
|
||||
public List<String> getRecentSearchSuggestion() {
|
||||
ArrayList<String> suggestions = new ArrayList<>();
|
||||
suggestions.addAll(searchingRepository.getRecentSearchSuggestion(5));
|
||||
suggestions.addAll(searchingRepository.getRecentSearchSuggestion());
|
||||
|
||||
return suggestions;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue