Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--blenderkit/search.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/blenderkit/search.py b/blenderkit/search.py
index 7d388430..468aaf8b 100644
--- a/blenderkit/search.py
+++ b/blenderkit/search.py
@@ -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']