1
0
Fork 0

For #12570 - Correctly removes search suggestions when search query and url is empty

master
Jeff Boek 2020-07-29 15:26:57 -07:00
parent 12b95b4902
commit a72f9c75f0
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ class AwesomeBarView(
updateSuggestionProvidersVisibility(state)
// Do not make suggestions based on user's current URL unless it's a search shortcut
if (state.query == state.url && !state.showSearchShortcuts) {
if (state.query.isNotEmpty() && state.query == state.url && !state.showSearchShortcuts) {
return
}