Disable auto identity by default

This commit is contained in:
M66B
2022-06-24 09:36:54 +02:00
parent aef4e3afd8
commit 758d9aa47a
4 changed files with 6 additions and 4 deletions

View File

@@ -631,6 +631,9 @@ public class ApplicationEx extends Application
editor.remove("browse_links")
.putBoolean("open_with_tabs", !browse_links);
}
} else if (version < 1927) {
if (!prefs.contains("auto_identity"))
editor.putBoolean("auto_identity", true);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)