Struct certificate checking by default

This commit is contained in:
M66B
2023-12-08 08:33:15 +01:00
parent 555abf50c7
commit e013adf7f3
4 changed files with 8 additions and 3 deletions

View File

@@ -658,7 +658,7 @@ public class FragmentOptionsConnection extends FragmentBase implements SharedPre
swSslHarden.setChecked(prefs.getBoolean("ssl_harden", false));
swSslHardenStrict.setChecked(prefs.getBoolean("ssl_harden_strict", false));
swSslHardenStrict.setEnabled(swSslHarden.isChecked());
swCertStrict.setChecked(prefs.getBoolean("cert_strict", !BuildConfig.PLAY_STORE_RELEASE));
swCertStrict.setChecked(prefs.getBoolean("cert_strict", true));
swOpenSafe.setChecked(prefs.getBoolean("open_safe", false));
swBouncyCastle.setChecked(prefs.getBoolean("bouncy_castle", false));
swFipsMode.setChecked(prefs.getBoolean("bc_fips", false));