1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-17 19:27:29 -06:00

[Client] Fix bug

This commit is contained in:
syuilo 2017-03-11 19:32:12 +09:00
parent 08e83e1374
commit 34495adbfc

View file

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