mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Quote limits for replies only
This commit is contained in:
parent
4c010c09d9
commit
a08ba39601
1 changed files with 2 additions and 1 deletions
|
@ -3839,7 +3839,8 @@ public class FragmentCompose extends FragmentBase {
|
|||
|
||||
// Limit number of nested block quotes
|
||||
boolean quote_limit = prefs.getBoolean("quote_limit", true);
|
||||
if (quote_limit)
|
||||
if (quote_limit &&
|
||||
("reply".equals(action) || "reply_all".equals(action)))
|
||||
for (Element bq : e.select("blockquote")) {
|
||||
int level = 1;
|
||||
Element parent = bq.parent();
|
||||
|
|
Loading…
Reference in a new issue