mirror of https://github.com/vector-im/riot-web
clear quoting event even on send fail, as then we can click retry
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
14f29e4740
commit
0ed3563748
|
@ -869,15 +869,15 @@ export default class MessageComposerInput extends React.Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.client.sendMessage(this.props.room.roomId, content).done((res) => {
|
this.client.sendMessage(this.props.room.roomId, content).finally(() => {
|
||||||
dis.dispatch({
|
|
||||||
action: 'message_sent',
|
|
||||||
});
|
|
||||||
// Once replies are not only for text, we can use message_sent for this
|
|
||||||
dis.dispatch({
|
dis.dispatch({
|
||||||
action: 'reply_to_event',
|
action: 'reply_to_event',
|
||||||
event: null,
|
event: null,
|
||||||
});
|
});
|
||||||
|
}).done((res) => {
|
||||||
|
dis.dispatch({
|
||||||
|
action: 'message_sent',
|
||||||
|
});
|
||||||
}, (e) => onSendMessageFailed(e, this.props.room));
|
}, (e) => onSendMessageFailed(e, this.props.room));
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
|
|
Loading…
Reference in New Issue