diff --git a/commands/http.js b/commands/http.js index 388ab99..45677bc 100644 --- a/commands/http.js +++ b/commands/http.js @@ -97,7 +97,7 @@ class HttpCommand extends Command { return a.filename.toLowerCase() < b.filename.toLowerCase() ? -1 : 1; }); files.forEach(f => { - htmlContent += `
  • ${f.filename}
  • `; + htmlContent += `
  • ${f.filename}
  • `; }); htmlContent += ''; result(htmlContent, 200, { 'Content-Type': 'text/html' });