1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-22 04:02:40 +03:00

null-guard history properly

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2018-07-26 17:11:32 +01:00
parent 265e4267b8
commit f264075369

View File

@@ -1255,16 +1255,14 @@ export default class MessageComposerInput extends React.Component {
let editorState; let editorState;
const historyItem = this.historyManager.getItem(delta); const historyItem = this.historyManager.getItem(delta);
if (historyItem) { if (!historyItem) return;
if (historyItem.format === 'rich' && !this.state.isRichTextEnabled) {
editorState = this.richToMdEditorState(historyItem.value); if (historyItem.format === 'rich' && !this.state.isRichTextEnabled) {
} editorState = this.richToMdEditorState(historyItem.value);
else if (historyItem.format === 'markdown' && this.state.isRichTextEnabled) { } else if (historyItem.format === 'markdown' && this.state.isRichTextEnabled) {
editorState = this.mdToRichEditorState(historyItem.value); editorState = this.mdToRichEditorState(historyItem.value);
} } else {
else { editorState = historyItem.value;
editorState = historyItem.value;
}
} }
// Move selection to the end of the selected history // Move selection to the end of the selected history