diff --git a/src/client/app/desktop/views/components/post-form.vue b/src/client/app/desktop/views/components/post-form.vue index 781ead17f..9c2807663 100644 --- a/src/client/app/desktop/views/components/post-form.vue +++ b/src/client/app/desktop/views/components/post-form.vue @@ -222,12 +222,6 @@ export default Vue.extend({ }); } - // keep cw when reply - if (this.reply && this.reply.cw != null) { - this.useCw = true; - this.cw = this.reply.cw; - } - this.$nextTick(() => { // 書きかけの投稿を復元 if (!this.instant && !this.mention) { diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue index 7bee01767..58718e2a9 100644 --- a/src/client/app/mobile/views/components/post-form.vue +++ b/src/client/app/mobile/views/components/post-form.vue @@ -211,12 +211,6 @@ export default Vue.extend({ }); } - // keep cw when reply - if (this.reply && this.reply.cw != null) { - this.useCw = true; - this.cw = this.reply.cw; - } - this.focus(); this.$nextTick(() => {