Add basic support for displaying emotes (#161)
This commit is contained in:
committed by
GitHub
parent
b5c5cd9586
commit
14cd84dab7
@@ -282,6 +282,7 @@ function RoomViewContent({
|
||||
|
||||
let content = mEvent.getContent().body;
|
||||
if (typeof content === 'undefined') return null;
|
||||
const msgType = mEvent.getContent()?.msgtype;
|
||||
let reply = null;
|
||||
let reactions = null;
|
||||
let isMarkdown = mEvent.getContent().format === 'org.matrix.custom.html';
|
||||
@@ -379,8 +380,10 @@ function RoomViewContent({
|
||||
);
|
||||
const userContent = (
|
||||
<MessageContent
|
||||
senderName={getUsernameOfRoomMember(mEvent.sender)}
|
||||
isMarkdown={isMarkdown}
|
||||
content={isMedia(mEvent) ? genMediaContent(mEvent) : content}
|
||||
msgType={msgType}
|
||||
isEdited={isEdited}
|
||||
/>
|
||||
);
|
||||
@@ -496,6 +499,7 @@ function RoomViewContent({
|
||||
header={userHeader}
|
||||
reply={userReply}
|
||||
content={editEvent !== null && isEditingEvent ? null : userContent}
|
||||
msgType={msgType}
|
||||
editContent={editEvent !== null && isEditingEvent ? (
|
||||
<MessageEdit
|
||||
content={content}
|
||||
|
||||
Reference in New Issue
Block a user