Skip to content

Commit 36dbe9c

Browse files
committed
In files.js, fix typo
1 parent 2771a41 commit 36dbe9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-portal/server/js/files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function setContentType(res, path, stat) {
2828
if(ext.length == 0) {
2929
const buffer = mFs.readFileSync(path);
3030
const name = mPath.basename(path);
31-
if(isInterlispSource(buffer, name) {
31+
if(isInterlispSource(buffer, name)) {
3232
res.set('Content-Type', 'application/octet-stream');
3333
} else if (isText(null, buffer)) {
3434
res.set('Content-Type', 'text/plain; charset=UTF-8');

0 commit comments

Comments
 (0)