mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-22 23:11:12 +02:00
set lastNode directly when not decending
This commit is contained in:
parent
793b91be5b
commit
c53708b245
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user