Merge pull request #1166 from matrix-org/luke/fix-rte-wrong-history-format
Always store sent MD messages as MD in historypull/21833/head
commit
0b46184a21
|
@ -556,9 +556,15 @@ export default class MessageComposerInput extends React.Component {
|
||||||
sendTextFn = this.client.sendEmoteMessage;
|
sendTextFn = this.client.sendEmoteMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this.state.isRichtextEnabled) {
|
||||||
this.historyManager.addItem(
|
this.historyManager.addItem(
|
||||||
contentHTML ? contentHTML : contentText,
|
contentHTML ? contentHTML : contentText,
|
||||||
contentHTML ? 'html' : 'markdown');
|
contentHTML ? 'html' : 'markdown',
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
// Always store MD input as input history
|
||||||
|
this.historyManager.addItem(contentText, 'markdown');
|
||||||
|
}
|
||||||
|
|
||||||
let sendMessagePromise;
|
let sendMessagePromise;
|
||||||
if (contentHTML) {
|
if (contentHTML) {
|
||||||
|
|
Loading…
Reference in New Issue