rename two methods

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2018-04-27 11:47:18 +01:00
parent 3050553fc2
commit 68dd57f56e
No known key found for this signature in database
GPG key ID: 3F879DA5AD802A5E
3 changed files with 5 additions and 5 deletions

View file

@ -232,7 +232,7 @@ export default class ReplyThread extends React.Component {
return {body, html};
}
static getReplyEvContent(ev) {
static makeReplyMixIn(ev) {
if (!ev) return {};
return {
'm.relates_to': {
@ -243,7 +243,7 @@ export default class ReplyThread extends React.Component {
};
}
static getThread(parentEv, onWidgetLoad, ref) {
static makeThread(parentEv, onWidgetLoad, ref) {
if (!SettingsStore.isFeatureEnabled("feature_rich_quoting") || !ReplyThread.getParentEventId(parentEv)) {
return <div />;
}