Fixing an issue with attachments.

This commit is contained in:
mike12345567 2021-03-24 18:31:13 +00:00
parent d66af9f151
commit c91f21f8e2
2 changed files with 3 additions and 1 deletions

View File

@ -90,6 +90,6 @@ exports.BaseQueryVerbs = {
exports.ObjectStoreBuckets = {
BACKUPS: "backups",
APPS: "apps",
APPS: "prod-budi-app-assets",
TEMPLATES: "templates",
}

View File

@ -112,6 +112,8 @@ exports.upload = async ({ bucket, filename, path, type, metadata }) => {
const fileBytes = fs.readFileSync(path)
const objectStore = exports.ObjectStore(bucket)
await exports.makeSureBucketExists(objectStore, bucket)
const config = {
// windows file paths need to be converted to forward slashes for s3
Key: sanitize(filename).replace(/\\/g, "/"),