forum and core: fix error 500 when query is empty on search

This commit is contained in:
2018-12-07 13:34:46 +01:00
committed by Skia
parent 65a0b7b2d4
commit 347caa3b6a
3 changed files with 5 additions and 1 deletions

View File

@ -71,6 +71,8 @@ def notification(request, notif_id):
def search_user(query, as_json=False):
if query == "":
return []
res = SearchQuerySet().models(User).autocomplete(auto=query)[:20]
return [r.object for r in res]