The real deal

This commit is contained in:
M66B 2021-05-23 20:33:12 +02:00
parent d813760795
commit b6599d4540
1 changed files with 2 additions and 1 deletions

View File

@ -1622,7 +1622,8 @@ public class HtmlHelper {
sb.append(line);
if (view ||
(l + 1 == lines.length && text.endsWith("\n")))
l + 1 < lines.length ||
text.endsWith("\n"))
sb.append("<br>");
}