better naming

pull/21833/head
Bruno Windels 2019-07-19 16:34:39 +02:00
parent f305d8ac08
commit de1c4e0cfe
1 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ export default class EditHistoryMessage extends React.PureComponent {
); );
} }
_diffIt(oldBody, newBody) { _renderBodyDiff(oldBody, newBody) {
const dpm = new DiffMatchPatch(); const dpm = new DiffMatchPatch();
const diff = dpm.diff_main(oldBody, newBody); const diff = dpm.diff_main(oldBody, newBody);
dpm.diff_cleanupSemantic(diff); dpm.diff_cleanupSemantic(diff);
@ -152,7 +152,7 @@ export default class EditHistoryMessage extends React.PureComponent {
} else { } else {
let contentElements; let contentElements;
if (isPlainMessage(mxEvent) && this.props.previousEdit && isPlainMessage(this.props.previousEdit)) { if (isPlainMessage(mxEvent) && this.props.previousEdit && isPlainMessage(this.props.previousEdit)) {
contentElements = this._diffIt(getReplacedContent(this.props.previousEdit).body, content.body); contentElements = this._renderBodyDiff(getReplacedContent(this.props.previousEdit).body, content.body);
} else { } else {
contentElements = HtmlUtils.bodyToHtml(content, null, {stripReplyFallback: true}); contentElements = HtmlUtils.bodyToHtml(content, null, {stripReplyFallback: true});
} }