Merge pull request #5390 from matrix-org/t3chguy/fix/15524
Disallow sending of empty messagespull/21833/head
commit
f73573881e
|
@ -308,6 +308,9 @@ export default class SendMessageComposer extends React.Component {
|
||||||
const startTime = CountlyAnalytics.getTimestamp();
|
const startTime = CountlyAnalytics.getTimestamp();
|
||||||
const {roomId} = this.props.room;
|
const {roomId} = this.props.room;
|
||||||
const content = createMessageContent(this.model, this.props.permalinkCreator, replyToEvent);
|
const content = createMessageContent(this.model, this.props.permalinkCreator, replyToEvent);
|
||||||
|
// don't bother sending an empty message
|
||||||
|
if (!content.body.trim()) return;
|
||||||
|
|
||||||
const prom = this.context.sendMessage(roomId, content);
|
const prom = this.context.sendMessage(roomId, content);
|
||||||
if (replyToEvent) {
|
if (replyToEvent) {
|
||||||
// Clear reply_to_event as we put the message into the queue
|
// Clear reply_to_event as we put the message into the queue
|
||||||
|
|
Loading…
Reference in New Issue