Default enable quote limit

This commit is contained in:
M66B
2020-11-15 08:53:39 +01:00
parent af132bf081
commit 550a6da315
2 changed files with 2 additions and 2 deletions

View File

@@ -3824,7 +3824,7 @@ public class FragmentCompose extends FragmentBase {
});
// Limit number of nested block quotes
boolean quote_limit = prefs.getBoolean("quote_limit", false);
boolean quote_limit = prefs.getBoolean("quote_limit", true);
if (quote_limit)
for (Element bq : d.select("blockquote")) {
int level = 1;