summaryrefslogtreecommitdiff
path: root/searx/webapp.py
diff options
context:
space:
mode:
authorAlexandre FLAMENT <alexandre.flament@hesge.ch>2022-09-02 08:30:38 +0000
committerAlexandre FLAMENT <alexandre.flament@hesge.ch>2022-09-02 08:30:38 +0000
commit94a28ebe5302dfe1b4a757853bb872f16144f791 (patch)
tree6c47636a937b71fadc5dff22dd616c5379a74b70 /searx/webapp.py
parentea61d6ed12dcf55e370ff77d3b23da37a2cb6373 (diff)
downloadsearxng-94a28ebe5302dfe1b4a757853bb872f16144f791.tar.gz
searxng-94a28ebe5302dfe1b4a757853bb872f16144f791.zip
Stats: display only the score per result, no anymore the score
Diffstat (limited to 'searx/webapp.py')
-rwxr-xr-xsearx/webapp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py
index 8c2046b5c..d697766c5 100755
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -145,7 +145,7 @@ result_templates = get_result_templates(templates_path)
STATS_SORT_PARAMETERS = {
'name': (False, 'name', ''),
- 'score': (True, 'score', 0),
+ 'score': (True, 'score_per_result', 0),
'result_count': (True, 'result_count', 0),
'time': (False, 'total', 0),
'reliability': (False, 'reliability', 100),