mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 14:44:58 +08:00
clear quoting event even on send fail, as then we can click retry
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
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) => {
|
||||
dis.dispatch({
|
||||
action: 'message_sent',
|
||||
});
|
||||
// Once replies are not only for text, we can use message_sent for this
|
||||
this.client.sendMessage(this.props.room.roomId, content).finally(() => {
|
||||
dis.dispatch({
|
||||
action: 'reply_to_event',
|
||||
event: null,
|
||||
});
|
||||
}).done((res) => {
|
||||
dis.dispatch({
|
||||
action: 'message_sent',
|
||||
});
|
||||
}, (e) => onSendMessageFailed(e, this.props.room));
|
||||
|
||||
this.setState({
|
||||
|
Loading…
Reference in New Issue
Block a user