Skip to content
Snippets Groups Projects
Commit 8fd8b39b authored by echicken's avatar echicken :chicken:
Browse files

Don't display files with blacklisted extensions inline.

parent 45a76407
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,12 @@ if ((http_request.method === 'GET' || http_request.method === 'POST') &&
reply.error = 'Not enough credits to download this file';
break;
}
var mt = settings.files_inline ? getMimeType(file) : 'application/octet-stream';
var mt;
if (!settings.files_inline || settings.files_inline_blacklist.indexOf(file.ext) > -1) {
mt = 'application/octet-stream';
} else {
mt = getMimeType(file);
}
http_reply.header['Content-Type'] = mt;
if (mt === 'application/octet-stream') {
http_reply.header['Content-Disposition'] = 'attachment; filename="' + file.base + '.' + file.ext + '"';
......
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