mirror of https://github.com/status-im/codimd.git
fix: S3 client config passing for image upload
ref issue: https://github.com/aws/aws-sdk-js-v3/issues/1396 Signed-off-by: Max Wu <jackymaxj@gmail.com>
This commit is contained in:
parent
54f6e55b71
commit
a41c4db0c2
|
@ -9,7 +9,16 @@ const logger = require('../logger')
|
|||
const { S3Client } = require('@aws-sdk/client-s3-node/S3Client')
|
||||
const { PutObjectCommand } = require('@aws-sdk/client-s3-node/commands/PutObjectCommand')
|
||||
|
||||
const s3 = new S3Client(config.s3)
|
||||
const credentials = {
|
||||
accessKeyId: config.s3.accessKeyId,
|
||||
secretAccessKey: config.s3.secretAccessKey
|
||||
}
|
||||
|
||||
const s3 = new S3Client({
|
||||
credentials,
|
||||
region: config.s3.region,
|
||||
endpoint: config.s3.endpoint
|
||||
})
|
||||
|
||||
exports.uploadImage = function (imagePath, callback) {
|
||||
if (!imagePath || typeof imagePath !== 'string') {
|
||||
|
|
Loading…
Reference in New Issue