Disabled JSON-LD by default

This commit is contained in:
M66B
2023-12-16 12:25:28 +01:00
parent 1fac401914
commit e412fa7393
2 changed files with 2 additions and 2 deletions

View File

@@ -2278,7 +2278,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
swEasyCorrect.setChecked(prefs.getBoolean("easy_correct", false));
swInfra.setChecked(prefs.getBoolean("infra", false));
swTldFlags.setChecked(prefs.getBoolean("tld_flags", false));
swJsonLd.setChecked(prefs.getBoolean("json_ld", !Helper.isPlayStoreInstall()));
swJsonLd.setChecked(prefs.getBoolean("json_ld", false));
swDupMsgId.setChecked(prefs.getBoolean("dup_msgids", false));
swThreadByRef.setChecked(prefs.getBoolean("thread_byref", true));
swMdn.setChecked(prefs.getBoolean("mdn", swExperiments.isChecked()));