Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-13 09:30:52 +02:00
parent b1fb089816
commit c44de3bea8
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790

View File

@ -128,15 +128,15 @@ export default class ReplyTile extends React.PureComponent<IProps> {
} }
const msgtypeOverrides = { const msgtypeOverrides = {
"m.image": MImageReplyBody, [MsgType.Image]: MImageReplyBody,
// We don't want a download link for files, just the file name is enough. // We don't want a download link for files, just the file name is enough.
"m.file": TextualBody, [MsgType.File]: TextualBody,
"m.sticker": TextualBody, "m.sticker": TextualBody,
"m.audio": TextualBody, [MsgType.Audio]: TextualBody,
"m.video": TextualBody, [MsgType.Video]: TextualBody,
}; };
const evOverrides = { const evOverrides = {
"m.sticker": TextualBody, [EventType.Sticker]: TextualBody,
}; };
return ( return (