don't lose focus after a / command

This commit is contained in:
Matthew Hodgson 2018-05-13 03:26:22 +01:00
parent e06763cd59
commit 4c3588d260

View file

@ -745,9 +745,10 @@ export default class MessageComposerInput extends React.Component {
});
}
if (cmd.promise) {
cmd.promise.then(function() {
cmd.promise.then(()=>{
console.log("Command success.");
}, function(err) {
this.refs.editor.focus();
}, (err)=>{
console.error("Command failure: %s", err);
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createTrackedDialog('Server error', '', ErrorDialog, {