From a63c8ef9398b5bcf1c68c3b6612bef56ac924738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=93=E3=81=8B=E3=82=8A?= <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Thu, 23 Jul 2026 20:03:10 +0900 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20=E3=82=BB=E3=83=B3=E3=82=B7?= =?UTF-8?q?=E3=83=86=E3=82=A3=E3=83=96=E3=81=AA=E3=83=A1=E3=83=87=E3=82=A3?= =?UTF-8?q?=E3=82=A2=E3=81=AE=E8=A1=A8=E7=A4=BA=E3=81=8C=E5=B8=B8=E3=81=AB?= =?UTF-8?q?=E3=81=BC=E3=81=8B=E3=81=99=E3=81=AB=E3=81=AA=E3=81=A3=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=82=8B=E5=A0=B4=E5=90=88=E3=81=AB=E5=88=9D=E5=9B=9E?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E3=81=97=E3=81=9F=E7=94=BB=E5=83=8F=E3=81=8C?= =?UTF-8?q?=E3=81=BC=E3=81=8B=E3=81=95=E3=82=8C=E3=82=8B=E5=95=8F=E9=A1=8C?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3=20(#17781)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/components/MkLightbox.item.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/components/MkLightbox.item.vue b/packages/frontend/src/components/MkLightbox.item.vue index 5870652d25..589e7433f4 100644 --- a/packages/frontend/src/components/MkLightbox.item.vue +++ b/packages/frontend/src/components/MkLightbox.item.vue @@ -284,7 +284,7 @@ function shouldHideInGallery(content: Content): boolean { if (!hiddenByDefault) return false; // ギャラリー起動時に最初に開いたセンシティブ画像だけは初期表示で隠さない - if (content.file.isSensitive && prefer.s.nsfw !== 'force' && props.initiallyOpened) { + if (content.file.isSensitive && props.initiallyOpened) { return false; }