prevent cider history overlapping with slate composer history

pull/21833/head
Bruno Windels 2019-08-22 14:07:03 +01:00
parent 6a3ecde4e6
commit 944c56d09b
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ export default class SendMessageComposer extends React.Component {
const parts = this._restoreStoredEditorState(partCreator) || [];
this.model = new EditorModel(parts, partCreator);
this.dispatcherRef = dis.register(this.onAction);
this.sendHistoryManager = new SendHistoryManager(this.props.room.roomId, 'mx_slate_composer_history_');
this.sendHistoryManager = new SendHistoryManager(this.props.room.roomId, 'mx_cider_composer_history_');
}
get _editorStateKey() {