fix(client): Fix bug that cannot post when image only

This commit is contained in:
syuilo 2020-04-19 17:40:46 +09:00
parent 164c6505f2
commit 8cefcaa55f

View file

@ -75,7 +75,7 @@ export default Vue.extend({
this.posting = true;
const file = this.value.attachCanvasImage ? await this.upload() : null;
this.$root.api('notes/create', {
text: this.text,
text: this.text === '' ? null : this.text,
fileIds: file ? [file.id] : undefined,
}).then(() => {
this.posted = true;