1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Removing leading slash.

This commit is contained in:
mike12345567 2021-06-10 11:34:37 +01:00
parent 016c567fc9
commit 9f53d08598

View file

@ -71,7 +71,7 @@ exports.uploadFile = async function (ctx) {
return prepareUpload({
file,
s3Key: `/${ctx.appId}/attachments/${processedFileName}`,
s3Key: `${ctx.appId}/attachments/${processedFileName}`,
bucket: ObjectStoreBuckets.APPS,
})
})