fix bug detected by tests
This commit is contained in:
parent
1dd052d9dd
commit
5cebce9bbf
2 changed files with 5 additions and 5 deletions
|
@ -223,14 +223,14 @@ function parseHtmlMessage(html, partCreator, isQuotedMessage) {
|
|||
function parsePlainTextMessage(body, partCreator, isQuotedMessage) {
|
||||
const lines = body.split("\n");
|
||||
const parts = lines.reduce((parts, line, i) => {
|
||||
const isLast = i === lines.length - 1;
|
||||
if (!isLast) {
|
||||
parts.push(partCreator.newline());
|
||||
}
|
||||
if (isQuotedMessage) {
|
||||
parts.push(partCreator.plain(QUOTE_LINE_PREFIX));
|
||||
}
|
||||
parts.push(...parseAtRoomMentions(line, partCreator));
|
||||
const isLast = i === lines.length - 1;
|
||||
if (!isLast) {
|
||||
parts.push(partCreator.newline());
|
||||
}
|
||||
return parts;
|
||||
}, []);
|
||||
return parts;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue