Comparing version 0.6.2 to 0.6.3
# Changelog | ||
## V0.6.3 | ||
*2021-01-21* | ||
- The service crashed when getting a file with non ASCII chars in filename. | ||
## v0.6.2 | ||
@@ -4,0 +8,0 @@ *2021-01-14* |
{ | ||
"name": "fpark", | ||
"version": "0.6.2", | ||
"version": "0.6.3", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -126,3 +126,3 @@ | ||
res.setHeader('Content-Encoding', 'gzip'); | ||
res.setHeader('Content-Disposition', 'inline; filename="' + params.id + '"'); | ||
res.setHeader('Content-Disposition', 'inline; filename="' + encodeURIComponent(params.id) + '"'); | ||
@@ -129,0 +129,0 @@ getFile(store.CONFIG, req, res, params, queryParams, keyNodes, [zlib.createGzip()], () => { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
79358