Don't ever send plain whitespace a search pattern

symbol_search
Tyler Goodlet 2021-05-28 13:44:30 -04:00
parent ea3d96e7ed
commit a31b83c5ca
1 changed files with 1 additions and 1 deletions

View File

@ -735,7 +735,7 @@ async def fill_results(
text = bar.text()
# print(f'search: {text}')
if not text:
if not text or text.isspace():
# print('idling')
_search_active = trio.Event()
break