Fix how attachment URLs are handled
This commit is contained in:
parent
887383bdb6
commit
674f40a06e
|
@ -241,7 +241,7 @@ export async function outputProcessing<T extends Row[] | Row>(
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
row[property].forEach((attachment: RowAttachment) => {
|
row[property].forEach((attachment: RowAttachment) => {
|
||||||
attachment.url = objectStore.getAppFileUrl(attachment.key)
|
attachment.url ??= objectStore.getAppFileUrl(attachment.key)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
} else if (
|
} else if (
|
||||||
|
|
Loading…
Reference in New Issue