rez_core 5.0.248 → 5.0.249

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "5.0.248",
3
+ "version": "5.0.249",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -168,7 +168,8 @@ export class MediaDataService extends EntityServiceImpl {
168
168
  Bucket: this.bucketName,
169
169
  Key: mediaData.media_url,
170
170
  Expires: Number(expiresIn) || 60 * 5,
171
- ResponseContentDisposition: 'inline',
171
+ // ResponseContentDisposition: 'inline',
172
+ ResponseContentDisposition: `attachment; filename="${mediaData.file_name}"`,
172
173
  });
173
174
  return {
174
175
  signedUrl,