Disable language detection by default

This commit is contained in:
M66B
2020-03-26 20:28:17 +01:00
parent 41eb8994c1
commit 1e5bf48912
2 changed files with 2 additions and 2 deletions

View File

@@ -1108,7 +1108,7 @@ public class HtmlHelper {
static String getLanguage(Context context, String body) {
try {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean language_detection = prefs.getBoolean("language_detection", true);
boolean language_detection = prefs.getBoolean("language_detection", false);
if (!language_detection)
return null;