You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
rename two methods
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@ -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 />;
|
||||
}
|
||||
|
Reference in New Issue
Block a user