Add api prefix to attachment nodes

This commit is contained in:
Philipinho
2025-03-06 14:19:29 +00:00
parent a7dd9b9198
commit 16254802e3
6 changed files with 15 additions and 6 deletions

View File

@ -102,7 +102,7 @@ export const handleVideoUpload =
if (!attachment) return;
const node = schema.nodes.video?.create({
src: `/files/${attachment.id}/${attachment.fileName}`,
src: `/api/files/${attachment.id}/${attachment.fileName}`,
attachmentId: attachment.id,
title: attachment.fileName,
size: attachment.fileSize,