From 031fb72d3751adb4cac7fc80174658e990b92ab4 Mon Sep 17 00:00:00 2001 From: axiosleo Date: Mon, 25 Nov 2024 19:07:41 +0800 Subject: [PATCH] fix: file path --- commands/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' });