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

This commit is contained in:
Antoine Bartuccio 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]

View File

@ -4,9 +4,9 @@
{% block content %}
<div id="forum">
{{ display_search_bar() }}
{% if object_list|length != 0 %}
<br>
{{ display_search_bar() }}
<div class="search-results">
{% for m in object_list %}
{{ display_message(m, user) }}

View File

@ -54,6 +54,8 @@ class ForumSearchView(ListView):
def get_queryset(self):
query = self.request.GET.get("query", "")
if query == "":
return []
queryset = SearchQuerySet().models(ForumMessage).autocomplete(auto=query)[:100]
return [
r.object for r in queryset if can_view(r.object.topic, self.request.user)