Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix /jumptodate using wrong MSC feature flag (#7563)
Browse files Browse the repository at this point in the history
  • Loading branch information
MadLittleMods authored Jan 18, 2022
1 parent 67a4d22 commit c068133
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SlashCommands.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export const Commands = [
);
dis.dispatch({
action: Action.ViewRoom,
eventId,
event_id: eventId,
highlighted: true,
room_id: roomId,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default class LabsUserSettingsTab extends React.Component<{}, IState> {
this.setState({ showHiddenReadReceipts });
});

MatrixClientPeg.get().doesServerSupportUnstableFeature("org.matrix.msc2716").then((showJumpToDate) => {
MatrixClientPeg.get().doesServerSupportUnstableFeature("org.matrix.msc3030").then((showJumpToDate) => {
this.setState({ showJumpToDate });
});

Expand Down

0 comments on commit c068133

Please sign in to comment.