mirror of
https://github.com/vector-im/element-web.git
synced 2025-10-18 02:41:41 +02:00
Add a null guard for message event previews
This commit is contained in:
parent
cc23f23f19
commit
ae076a7439
@ -30,6 +30,8 @@ export class MessageEventPreview implements IPreview {
|
|||||||
eventContent = event.getContent()['m.new_content'];
|
eventContent = event.getContent()['m.new_content'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!eventContent || !eventContent['body']) return null; // invalid for our purposes
|
||||||
|
|
||||||
let body = (eventContent['body'] || '').trim();
|
let body = (eventContent['body'] || '').trim();
|
||||||
const msgtype = eventContent['msgtype'];
|
const msgtype = eventContent['msgtype'];
|
||||||
if (!body || !msgtype) return null; // invalid event, no preview
|
if (!body || !msgtype) return null; // invalid event, no preview
|
||||||
|
Loading…
x
Reference in New Issue
Block a user