From 01e147eea93a2d67e7341500ecac19282364fb7d Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Mon, 29 Dec 2025 22:00:50 +0900 Subject: [PATCH] fix: fix issue on preview card size detection (#3488) --- app/components/status/StatusPreviewCardNormal.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/status/StatusPreviewCardNormal.vue b/app/components/status/StatusPreviewCardNormal.vue index 4cdd901d..929dad69 100644 --- a/app/components/status/StatusPreviewCardNormal.vue +++ b/app/components/status/StatusPreviewCardNormal.vue @@ -16,6 +16,7 @@ const ogImageWidth = 400 const alt = computed(() => `${card.title} - ${card.title}`) const isSquare = computed(() => ( smallPictureOnly + || !card.image || card.width === card.height || Number(card.width || 0) < ogImageWidth || Number(card.height || 0) < ogImageWidth / 2