Disable linked data in Play Store version

This commit is contained in:
M66B
2023-11-28 12:51:23 +01:00
parent d287a45d48
commit f39070756d
2 changed files with 2 additions and 2 deletions

View File

@@ -2374,7 +2374,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", true));
swJsonLd.setChecked(prefs.getBoolean("json_ld", !Helper.isPlayStoreInstall()));
swDupMsgId.setChecked(prefs.getBoolean("dup_msgids", false));
swThreadByRef.setChecked(prefs.getBoolean("thread_byref", true));
swMdn.setChecked(prefs.getBoolean("mdn", swExperiments.isChecked()));