xhr download as octet-stream

This commit is contained in:
Danny Coates 2017-08-17 10:19:18 -07:00
parent a1d0eef8a5
commit e9405f49ee
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
3 changed files with 2 additions and 4 deletions

View file

@ -194,7 +194,7 @@ app.get('/assets/download/:id', async (req, res) => {
const contentLength = await storage.length(id);
res.writeHead(200, {
'Content-Disposition': `attachment; filename=${meta.filename}`,
'Content-Type': meta.mimeType,
'Content-Type': 'application/octet-stream',
'Content-Length': contentLength,
'X-File-Metadata': JSON.stringify(meta)
});