1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 11:56:13 +02:00

[Client] Fix #401

This commit is contained in:
syuilo
2017-04-09 16:01:49 +09:00
parent 00f27129f5
commit d863599f30

View File

@@ -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