make named options argument optional
This commit is contained in:
parent
ea1faacd8b
commit
0adca10f9f
2 changed files with 2 additions and 2 deletions
|
@ -236,7 +236,7 @@ function parsePlainTextMessage(body, partCreator, isQuotedMessage) {
|
|||
return parts;
|
||||
}
|
||||
|
||||
export function parseEvent(event, partCreator, {isQuotedMessage = false}) {
|
||||
export function parseEvent(event, partCreator, {isQuotedMessage = false} = {}) {
|
||||
const content = event.getContent();
|
||||
let parts;
|
||||
if (content.format === "org.matrix.custom.html") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue