Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 94430e10 authored by Markus Heiser's avatar Markus Heiser Committed by GitHub
Browse files

Merge pull request #2238 from return42/fix-2027

[fix] fix threshold in replace_auto_language
parents f2962a2f 150a90c8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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'