mirror of https://github.com/vector-im/riot-web
dont allow sending empty messages
parent
c219f925c6
commit
b9cb22e153
|
@ -203,6 +203,9 @@ export default class SendMessageComposer extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
_sendMessage() {
|
_sendMessage() {
|
||||||
|
if (this.model.isEmpty) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (!containsEmote(this.model) && this._isSlashCommand()) {
|
if (!containsEmote(this.model) && this._isSlashCommand()) {
|
||||||
this._runSlashCommand();
|
this._runSlashCommand();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue