Cleaner test on body
This commit is contained in:
parent
0a7f44b226
commit
aae93a9af2
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ function getHtmlReplyFallback(mxEvent: MatrixEvent): string {
|
|||
|
||||
function getTextReplyFallback(mxEvent: MatrixEvent): string {
|
||||
const body = mxEvent.getContent().body;
|
||||
if (!body || typeof body !== 'string') {
|
||||
if (typeof body !== 'string') {
|
||||
return "";
|
||||
}
|
||||
const lines = body.split("\n").map(l => l.trim());
|
||||
|
|
Loading…
Reference in a new issue