1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 12:58:54 -05:00

Fix file server crash (#20)

Fix #19
This commit is contained in:
Bartek Iwańczuk 2018-12-12 18:47:58 +01:00 committed by Ryan Dahl
parent dbff42070b
commit d9ab8eb003

View file

@ -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;