diff --git a/components/status/StatusAttachment.vue b/components/status/StatusAttachment.vue index 9c6e7d1b..515271b0 100644 --- a/components/status/StatusAttachment.vue +++ b/components/status/StatusAttachment.vue @@ -10,6 +10,7 @@ const { attachment } = defineProps<{ const src = $computed(() => attachment.previewUrl || attachment.url || attachment.remoteUrl!) const srcset = $computed(() => [ [attachment.url, attachment.meta?.original?.width], + [attachment.remoteUrl, attachment.meta?.original?.width], [attachment.previewUrl, attachment.meta?.small?.width], ].filter(([url]) => url).map(([url, size]) => `${url} ${size}w`).join(', '))