Skip to content
Snippets Groups Projects
Commit 7ecccf12 authored by Vilém Duha's avatar Vilém Duha
Browse files

BlenderKit: fix search ordering - was accidentaly upside down.

parent 5f579088
No related branches found
No related tags found
No related merge requests found
......@@ -716,9 +716,9 @@ class Searcher(threading.Thread):
# result ordering: _score - relevance, score - BlenderKit score
if query.get('category_subtree') is not None:
requeststring += '+order:_score,-score'
requeststring += '+order:-score,_score'
else:
requeststring += '+order:-score'
requeststring += '+order:_score'
requeststring += '&addon_version=%s' % params['addon_version']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment