1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-03 05:34:51 +00:00

Suppress extra newline at end

This commit is contained in:
M66B 2020-08-21 09:37:58 +02:00
parent c7b7fee232
commit 9c9ee9c39e

View file

@ -225,6 +225,7 @@ public class HtmlEx {
out.append(isInBulletList ? "</ul>\n" : "</ol>\n");
isInBulletList = null;
}
if (i != text.length())
out.append("<br>\n");
} else {
Boolean isBulletListItem = null;