From 2bc708f8e6dafb8f35ffe474c37533791b2fa4e0 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 23 Dec 2018 03:41:28 +0900 Subject: Fix #3717 (#3723) --- src/client/app/mobile/views/components/post-form.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/client/app/mobile') diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue index e35a647640..bd3154576b 100644 --- a/src/client/app/mobile/views/components/post-form.vue +++ b/src/client/app/mobile/views/components/post-form.vue @@ -197,9 +197,8 @@ export default Vue.extend({ this.visibility = this.reply.visibility; } - // ダイレクトへのリプライはリプライ先ユーザーを初期設定 - if (this.reply && this.reply.visibility === 'specified') { - this.$root.api('users/show', { userId: this.reply.userId }).then(user => { + if (this.reply) { + this.$root.api('users/show', { userId: this.reply.userId }).then(user => { this.visibleUsers.push(user); }); } -- cgit v1.2.3-freya