1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-22 14:11:00 +00:00

Quote limit raw document

This commit is contained in:
M66B 2021-07-07 18:56:23 +02:00
parent cdd2fb4b4e
commit a303a6f685

View file

@ -2257,8 +2257,7 @@ public class HtmlHelper {
int level = 1;
Element parent = bq.parent();
while (parent != null) {
if ("blockquote".equals(parent.tagName()) &&
hasBorder(parent))
if ("blockquote".equals(parent.tagName())) // TODO: indentation
level++;
parent = parent.parent();
}