mirror of https://github.com/calzoneman/sync.git
Minor fix for messages with spaces only
This commit is contained in:
parent
484b695965
commit
7002874bbb
|
@ -120,7 +120,7 @@ ChatModule.prototype.handleChatMsg = function (user, data) {
|
|||
data.msg = data.msg.substring(0, 240).replace(/[\x00-\x08\x0a-\x1f]+/g, " ");
|
||||
|
||||
// Disallow blankposting
|
||||
if (!data.msg) {
|
||||
if (!data.msg.trim()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue