1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-23 08:14:45 +00:00

Debug: limit reset questions

This commit is contained in:
M66B 2022-04-09 07:50:32 +02:00
parent 141ea49efc
commit 35d153b5dc

View file

@ -1569,7 +1569,8 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
editor.remove(option);
for (String key : prefs.getAll().keySet())
if ((key.startsWith("translated_") && cbGeneral.isChecked()) ||
if ((!BuildConfig.DEBUG &&
key.startsWith("translated_") && cbGeneral.isChecked()) ||
(key.endsWith(".show_full") && cbFull.isChecked()) ||
(key.endsWith(".show_images") && cbImages.isChecked()) ||
(key.endsWith(".confirm_link") && cbLinks.isChecked())) {