Browse Source

Text Search and Filters don't work at the same time in the web UI #1316

Making sure to return distinct results. Changing set operation to '&' to show the matching results from filters AND search term
Neel Suthar 1 year ago
parent
commit
279883d6bb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      archivebox/core/mixins.py

+ 2 - 2
archivebox/core/mixins.py

@@ -10,10 +10,10 @@ class SearchResultsAdminMixin:
 
         search_term = search_term.strip()
         if not search_term:
-            return qs, use_distinct
+            return qs.distinct(), use_distinct
         try:
             qsearch = query_search_index(search_term)
-            qs = qs | qsearch
+            qs = qs & qsearch
         except Exception as err:
             print(f'[!] Error while using search backend: {err.__class__.__name__} {err}')
             messages.add_message(request, messages.WARNING, f'Error from the search backend, only showing results from default admin search fields - Error: {err}')