Merge pull request #3151 from matrix-org/bwindels/e2e-edit-history

Make edit history work in encrypted rooms.
This commit is contained in:
Bruno Windels 2019-06-27 13:16:10 +00:00 committed by GitHub
commit f18c389f2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,8 @@ export default class EditHistoryMessage extends React.PureComponent {
render() {
const {mxEvent} = this.props;
const content = mxEvent.event.content["m.new_content"] || mxEvent.event.content;
const originalContent = mxEvent.getOriginalContent();
const content = originalContent["m.new_content"] || originalContent;
const contentElements = HtmlUtils.bodyToHtml(content);
let contentContainer;
if (mxEvent.getContent().msgtype === "m.emote") {