Skip to content

Commit

Permalink
Change nothing but get it to work
Browse files Browse the repository at this point in the history
  • Loading branch information
hobinjk-ptc committed Feb 9, 2022
1 parent 2738deb commit 53ec8d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = {
'always'
],
'comma-spacing': [
'warn', {before: false, after: true}
'warn', {before: false, after: true}
],
'key-spacing': 'warn',
'keyword-spacing': 'warn',
Expand Down
6 changes: 3 additions & 3 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -2555,7 +2555,7 @@ function objectWebServer() {
keepExtensions: true
});

var filename = '';
let filename = '';

form.on('error', function (err) {
throw err;
Expand Down Expand Up @@ -2696,7 +2696,7 @@ function objectWebServer() {
keepExtensions: true
});

var filename = '';
let filename = '';

form.on('error', function (err) {
throw err;
Expand Down Expand Up @@ -2908,7 +2908,7 @@ function objectWebServer() {

} else if (fileExtension === 'zip') {

console.log('I found a zip file');
console.log('I found a zip file', filename);

try {
var DecompressZip = require('decompress-zip');
Expand Down

0 comments on commit 53ec8d6

Please sign in to comment.