Merge pull request #12205 from Samuel-Martineau/fix-attachments-remote-urls
Fix how attachment URLs are handled
This commit is contained in:
commit
856898990b
|
@ -241,7 +241,7 @@ export async function outputProcessing<T extends Row[] | Row>(
|
|||
continue
|
||||
}
|
||||
row[property].forEach((attachment: RowAttachment) => {
|
||||
attachment.url = objectStore.getAppFileUrl(attachment.key)
|
||||
attachment.url ??= objectStore.getAppFileUrl(attachment.key)
|
||||
})
|
||||
}
|
||||
} else if (
|
||||
|
|
Loading…
Reference in New Issue