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:
parent
141ea49efc
commit
35d153b5dc
1 changed files with 2 additions and 1 deletions
|
@ -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())) {
|
||||
|
|
Loading…
Reference in a new issue