1
0
mirror of https://github.com/searxng/searxng.git synced 2024-07-02 15:30:42 +02:00

Merge pull request #2238 from return42/fix-2027

[fix] fix threshold in replace_auto_language
This commit is contained in:
Markus Heiser 2023-03-19 15:30:37 +01:00 committed by GitHub
commit 94430e104c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ def replace_auto_language(search_query: SearchQuery):
if search_query.lang != 'auto':
return
detected_lang = detect_language(search_query.query, threshold=0.0, only_search_languages=True)
detected_lang = detect_language(search_query.query, threshold=0.3, only_search_languages=True)
if detected_lang is None:
# fallback to 'all' if no language has been detected
search_query.lang = 'all'