You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-13 08:02:38 +03:00
Add a null guard for message event previews
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user