TODO:
{{ attachment }}
diff --git a/components/status/StatusCard.vue b/components/status/StatusCard.vue
index 5beb4e61..2f413b37 100644
--- a/components/status/StatusCard.vue
+++ b/components/status/StatusCard.vue
@@ -24,7 +24,7 @@ const router = useRouter()
function go(e: MouseEvent) {
const path = e.composedPath() as HTMLElement[]
- const el = path.find(el => ['A', 'BUTTON', 'P'].includes(el.tagName?.toUpperCase()))
+ const el = path.find(el => ['A', 'BUTTON', 'P', 'IMG', 'VIDEO'].includes(el.tagName?.toUpperCase()))
if (!el || el.tagName.toUpperCase() === 'P')
router.push(`/@${status.account.acct}/${status.id}`)
}
diff --git a/components/status/StatusMedia.vue b/components/status/StatusMedia.vue
index 1c162369..82f24b49 100644
--- a/components/status/StatusMedia.vue
+++ b/components/status/StatusMedia.vue
@@ -17,6 +17,7 @@ const { status } = defineProps<{