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

@ -3031,7 +3031,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
final int zoom = args.getInt("zoom");
final float scale = args.getFloat("scale");
final boolean download_plain = prefs.getBoolean("download_plain", false);
final boolean json_ld = prefs.getBoolean("json_ld", true);
final boolean json_ld = prefs.getBoolean("json_ld", !Helper.isPlayStoreInstall());
if (message == null || !message.content)
return null;

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()));