From 5f6acc56e2a16f1ff11092ce547defb23130e41a Mon Sep 17 00:00:00 2001 From: Esurio Date: Tue, 13 Aug 2024 12:01:56 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=83=97=E3=83=A9=E3=82=A4=E3=83=99?= =?UTF-8?q?=E3=83=BC=E3=83=88=E5=85=AC=E9=96=8B=E7=AF=84=E5=9B=B2=E3=81=A7?= =?UTF-8?q?=E3=83=AA=E3=83=97=E3=83=A9=E3=82=A4=E6=99=82=E3=81=AB=E5=85=AC?= =?UTF-8?q?=E9=96=8B=E7=AF=84=E5=9B=B2=E3=81=8C=E5=BC=95=E3=81=8D=E7=B6=99?= =?UTF-8?q?=E3=81=8C=E3=82=8C=E3=81=AA=E3=81=84=E5=95=8F=E9=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/components/MkPostForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue index 216a4f3666..99cf4235b3 100644 --- a/packages/frontend/src/components/MkPostForm.vue +++ b/packages/frontend/src/components/MkPostForm.vue @@ -356,7 +356,7 @@ if (props.channel) { } // 公開以外へのリプライ時は元の公開範囲を引き継ぐ -if (props.reply && ['home', 'followers', 'specified'].includes(props.reply.visibility)) { +if (props.reply && ['home', 'followers', 'specified', 'private'].includes(props.reply.visibility)) { if (props.reply.visibility === 'home' && visibility.value === 'followers') { visibility.value = 'followers'; } else if (['home', 'followers'].includes(props.reply.visibility) && visibility.value === 'specified') {