From c1f9510323a1ff2f8f0925682920098a94f7c561 Mon Sep 17 00:00:00 2001 From: NoriDev Date: Fri, 22 Sep 2023 23:23:50 +0900 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20=E8=BF=94=E4=BF=A1=E3=81=AB?= =?UTF-8?q?=E6=8A=95=E7=A8=BF=E3=83=95=E3=82=A9=E3=83=BC=E3=83=A0=E3=81=8C?= =?UTF-8?q?=E8=87=AA=E5=8B=95=E7=9A=84=E3=81=AB=E3=83=A1=E3=83=B3=E3=82=B7?= =?UTF-8?q?=E3=83=A7=E3=83=B3=E3=82=92=E8=BF=BD=E5=8A=A0=E3=81=97=E3=81=AA?= =?UTF-8?q?=E3=81=84=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/components/MkPostFormSimple.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/frontend/src/components/MkPostFormSimple.vue b/packages/frontend/src/components/MkPostFormSimple.vue index 56b971c4d1..4c93f77e53 100644 --- a/packages/frontend/src/components/MkPostFormSimple.vue +++ b/packages/frontend/src/components/MkPostFormSimple.vue @@ -279,10 +279,6 @@ if (props.mention) { text += ' '; } -if (props.reply && (props.reply.user.username !== $i.username || (props.reply.user.host != null && props.reply.user.host !== host))) { - text = `@${props.reply.user.username}${props.reply.user.host != null ? '@' + toASCII(props.reply.user.host) : ''} `; -} - if (props.reply && props.reply.text != null) { const ast = mfm.parse(props.reply.text); const otherHost = props.reply.user.host;