BlenderKit: fix search ordering - was accidentaly upside down.

This commit is contained in:
Vilém Duha 2019-07-26 11:02:04 +02:00 committed by Brecht Van Lommel
parent a01561143c
commit 4998c392f9
1 changed files with 2 additions and 2 deletions

View File

@ -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']