You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
set lastNode directly when not decending
This commit is contained in:
@@ -192,8 +192,11 @@ function parseHtmlMessage(html, partCreator) {
|
||||
if (lastNode && lastNode.nodeName === "BLOCKQUOTE") {
|
||||
parts.push(partCreator.newline());
|
||||
}
|
||||
lastNode = null;
|
||||
return checkDecendInto(n);
|
||||
const decend = checkDecendInto(n);
|
||||
// when not decending (like for PRE), onNodeLeave won't be called to set lastNode
|
||||
// so do that here.
|
||||
lastNode = decend ? null : n;
|
||||
return decend;
|
||||
}
|
||||
|
||||
function onNodeLeave(n) {
|
||||
|
||||
Reference in New Issue
Block a user