Prevent users from sending empty ^ reply messages

Этот коммит содержится в:
hmhealey
2015-07-21 16:01:30 -04:00
родитель d4fd000ccf
Коммит 0967a131a1

Просмотреть файл

@@ -31,6 +31,11 @@ module.exports = React.createClass({
post.message = this.state.messageText;
// if this is a reply, trim off any carets from the beginning of a message
if (this.state.rootId && post.message.startsWith("^")) {
post.message = post.message.replace(/^\^+\s*/g, "");
}
if (post.message.trim().length === 0 && this.state.previews.length === 0) {
return;
}
@@ -71,11 +76,6 @@ module.exports = React.createClass({
post.root_id = this.state.rootId;
post.parent_id = this.state.parentId;
// if this is a reply, trim off any carets from the beginning of a message
if (post.root_id && post.message.startsWith("^")) {
post.message = post.message.replace(/^\^+\s*/g, "");
}
client.createPost(post, ChannelStore.getCurrent(),
function(data) {
PostStore.storeDraft(data.channel_id, data.user_id, null);