aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/static/scripts.js
diff options
context:
space:
mode:
Diffstat (limited to 'juick-www/src/main/static/scripts.js')
-rw-r--r--juick-www/src/main/static/scripts.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/juick-www/src/main/static/scripts.js b/juick-www/src/main/static/scripts.js
index e33d1929..6bea2ea3 100644
--- a/juick-www/src/main/static/scripts.js
+++ b/juick-www/src/main/static/scripts.js
@@ -354,7 +354,6 @@ function showCommentForm(mid, rid) {
let validateMessage = () => {
let len = textarea.value.length;
- if (len < 1) { return 'Empty message'; }
if (len > 4096) { return 'Message is too long'; }
return '';
};