Add Content-Type to the images uploaded to AWS S3

This commit is contained in:
LluisArevalo
2017-05-08 10:22:52 +02:00
parent 5343a61ae9
commit 03ef1bf4f0
2 changed files with 23 additions and 0 deletions

3
app.js
View File

@@ -548,6 +548,9 @@ app.post('/uploadimage', function (req, res) {
Body: buffer
}
var mimeType = getImageMimeType(files.image.path)
if (mimeType) { params.ContentType = mimeType }
s3.putObject(params, function (err, data) {
if (err) {
logger.error(err)