diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-01-23 19:45:14 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-01-23 19:45:14 +0900 |
| commit | 4ab96251f557a2a654833474807ed7168ae8989a (patch) | |
| tree | 574982c50a98b19e7c91e32f0dbddf355fccf3bd /src | |
| parent | Clean up (diff) | |
| download | misskey-4ab96251f557a2a654833474807ed7168ae8989a.tar.gz misskey-4ab96251f557a2a654833474807ed7168ae8989a.tar.bz2 misskey-4ab96251f557a2a654833474807ed7168ae8989a.zip | |
[Client] Resolve #3967
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/widgets/post-form.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/app/desktop/views/widgets/post-form.vue b/src/client/app/desktop/views/widgets/post-form.vue index e409760aaf..57c167b2a7 100644 --- a/src/client/app/desktop/views/widgets/post-form.vue +++ b/src/client/app/desktop/views/widgets/post-form.vue @@ -179,6 +179,7 @@ export default define({ this.$root.api('notes/create', { text: this.text == '' ? undefined : this.text, fileIds: this.files.length > 0 ? this.files.map(f => f.id) : undefined, + visibility: this.$store.state.settings.defaultNoteVisibility }).then(data => { this.clear(); }).catch(err => { |