diff --git a/node/src/handlers/get-file-set-download.js b/node/src/handlers/get-file-set-download.js index c11c0610..a7273b8f 100644 --- a/node/src/handlers/get-file-set-download.js +++ b/node/src/handlers/get-file-set-download.js @@ -112,9 +112,7 @@ async function getDownloadLink(doc) { const getObjectParams = { Bucket: bucket, Key: key, - ResponseContentDisposition: `attachment; filename=${ - doc._source.label - }.${mime.extension(doc._source.mime_type)}`, + ResponseContentDisposition: `attachment; filename=download.${mime.extension(doc._source.mime_type)}`, }; const client = new S3Client(clientParams);