diff --git a/src/web/app/desktop/tags/post-form.tag b/src/web/app/desktop/tags/post-form.tag index c4c1214c7..bd7a3b94a 100644 --- a/src/web/app/desktop/tags/post-form.tag +++ b/src/web/app/desktop/tags/post-form.tag @@ -485,7 +485,7 @@ this.save = () => { const context = { - text: this.refs.text.value, + text: this.refs.text.value == '' ? undefined : this.refs.text.value, files: this.files, poll: this.poll && this.refs.poll ? this.refs.poll.get() : undefined };