mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Add typeof check for body
This commit is contained in:
parent
c0282e0351
commit
39f1dc224c
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ function getHtmlReplyFallback(mxEvent: MatrixEvent): string {
|
|||
|
||||
function getTextReplyFallback(mxEvent: MatrixEvent): string {
|
||||
const body = mxEvent.getContent().body;
|
||||
if (!body) {
|
||||
if (!body || typeof body !== 'string') {
|
||||
return "";
|
||||
}
|
||||
const lines = body.split("\n").map(l => l.trim());
|
||||
|
|
Loading…
Reference in a new issue