Fix crash in E2E rooms

Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
Ajay Bura 2021-12-09 15:27:59 +05:30
parent 74b8a0f10f
commit 3e75841a83

View file

@ -574,7 +574,14 @@ function Message({
let { body } = content;
const username = getUsernameOfRoomMember(mEvent.sender);
if (typeof body === 'undefined') return null;
const edit = useCallback(() => {
setIsEditing(true);
}, []);
const reply = useCallback(() => {
replyTo(senderId, eventId, body);
}, [body]);
if (body === undefined) return null;
if (msgType === 'm.emote') className.push('message--type-emote');
let isCustomHTML = content.format === 'org.matrix.custom.html';
@ -594,13 +601,6 @@ function Message({
body = parseReply(body)?.body ?? body;
}
const edit = useCallback(() => {
setIsEditing(true);
}, []);
const reply = useCallback(() => {
replyTo(senderId, eventId, body);
}, [body]);
return (
<div className={className.join(' ')}>
{