[Client] Fix #401
This commit is contained in:
parent
00f27129f5
commit
d863599f30
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@
|
|||
: undefined;
|
||||
|
||||
this.api('posts/create', {
|
||||
text: this.refs.text.value,
|
||||
text: this.refs.text.value == '' ? undefined : this.refs.text.value,
|
||||
media_ids: files,
|
||||
reply_to_id: opts.reply ? opts.reply.id : undefined,
|
||||
poll: this.poll ? this.refs.poll.get() : undefined
|
||||
|
|
Loading…
Reference in a new issue