From b3aa9682d9ecd9d537cde12e1cd35f31ca2eef16 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 30 Jan 2026 17:24:42 +0200 Subject: [PATCH] set presentation field in record --- src/lib/api/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index 20f0745d69..083c587b3b 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -354,6 +354,8 @@ async function resolveMedia( alt: videoDraft.altText || undefined, captions: captions.length === 0 ? undefined : captions, aspectRatio, + presentation: + videoDraft.video.mimeType === 'image/gif' ? 'gif' : 'default', } } if (embedDraft.media?.type === 'gif') {