We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 709d33c + 8a22678 commit 7205e5dCopy full SHA for 7205e5d
src/components/views/messages/TextualBody.js
@@ -401,7 +401,8 @@ export default class TextualBody extends React.Component {
401
const mxEvent = this.props.mxEvent;
402
const content = mxEvent.getContent();
403
404
- const stripReply = ReplyThread.getParentEventId(mxEvent);
+ // only strip reply if this is the original replying event, edits thereafter do not have the fallback
405
+ const stripReply = !mxEvent.replacingEvent() && ReplyThread.getParentEventId(mxEvent);
406
let body = HtmlUtils.bodyToHtml(content, this.props.highlights, {
407
disableBigEmoji: content.msgtype === "m.emote" || !SettingsStore.getValue('TextualBody.enableBigEmoji'),
408
// Part of Replies fallback support
0 commit comments