mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
Fix file server crash (denoland/deno_std#20)
Fix denoland/deno_std#19
Original: d9ab8eb003
This commit is contained in:
parent
c4e20b746f
commit
10daa2982a
1 changed files with 1 additions and 2 deletions
|
@ -109,8 +109,7 @@ async function serveDir(req: ServerRequest, dirPath: string, dirName: string) {
|
|||
for (const info of fileInfos) {
|
||||
if (info.name === "index.html" && info.isFile()) {
|
||||
// in case index.html as dir...
|
||||
await serveFile(req, info.path);
|
||||
return;
|
||||
return await serveFile(req, info.path);
|
||||
}
|
||||
// Yuck!
|
||||
let mode = null;
|
||||
|
|
Loading…
Reference in a new issue