@teamkeel/functions-runtime 0.404.0 → 0.404.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/File.js +1 -3
package/package.json
CHANGED
package/src/File.js
CHANGED
|
@@ -187,9 +187,7 @@ class File extends InlineFile {
|
|
|
187
187
|
const command = new GetObjectCommand({
|
|
188
188
|
Bucket: process.env.KEEL_FILES_BUCKET_NAME,
|
|
189
189
|
Key: "files/" + this.key,
|
|
190
|
-
ResponseContentDisposition:
|
|
191
|
-
this.filename
|
|
192
|
-
)}"`,
|
|
190
|
+
ResponseContentDisposition: "inline",
|
|
193
191
|
});
|
|
194
192
|
|
|
195
193
|
const url = await getSignedUrl(s3Client, command, { expiresIn: 60 * 60 });
|