We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2771a41 commit 36dbe9cCopy full SHA for 36dbe9c
web-portal/server/js/files.js
@@ -28,7 +28,7 @@ function setContentType(res, path, stat) {
28
if(ext.length == 0) {
29
const buffer = mFs.readFileSync(path);
30
const name = mPath.basename(path);
31
- if(isInterlispSource(buffer, name) {
+ if(isInterlispSource(buffer, name)) {
32
res.set('Content-Type', 'application/octet-stream');
33
} else if (isText(null, buffer)) {
34
res.set('Content-Type', 'text/plain; charset=UTF-8');
0 commit comments