Skip to content
Snippets Groups Projects
Commit 6104817b authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix downloaded filenames in v3.19

Files were being downloaded as undefined.undefined because I didn't emulate
the old 'base' and 'ext' properties - just use a single 'name' property now.
parent fd99cca8
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -49,7 +49,7 @@ if ((http_request.method === 'GET' || http_request.method === 'POST') && request
}
http_reply.header['Content-Type'] = mt;
if (mt === 'application/octet-stream') {
http_reply.header['Content-Disposition'] = 'attachment; filename="' + file.base + '.' + file.ext + '"';
http_reply.header['Content-Disposition'] = 'attachment; filename="' + file.name + '"';
} else {
http_reply.header['Content-Disposition'] = 'inline';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment