mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Check if div has content
This commit is contained in:
@@ -366,9 +366,19 @@ public class HtmlHelper {
|
||||
// Prevent too many line breaks
|
||||
for (Element div : document.select("div")) {
|
||||
div.tagName("span");
|
||||
if (div.childNodeSize() == 1 && div.childNode(0) instanceof TextNode)
|
||||
|
||||
boolean content = false;
|
||||
for (Node child : div.childNodes())
|
||||
if (child instanceof TextNode ||
|
||||
(child instanceof Element && "img".equals(child.nodeName()))) {
|
||||
content = true;
|
||||
break;
|
||||
}
|
||||
|
||||
if (content) {
|
||||
div.appendElement("br");
|
||||
div.appendElement("br");
|
||||
div.appendElement("br");
|
||||
}
|
||||
}
|
||||
|
||||
Element body = document.body();
|
||||
|
||||
Reference in New Issue
Block a user