1
0

Fix file list

This commit is contained in:
Zef Hemel 2022-10-29 16:31:39 +02:00
parent 63aea3c593
commit 2bf4184707

View File

@ -18,7 +18,7 @@ for await (
const s = await Deno.stat(fullPath);
allFiles.push({
name: fullPath.substring(rootDir.length + 1),
lastModified: s.mtime!.getTime(),
lastModified: 0,
contentType: mime.getType(fullPath) || "application/octet-stream",
size: s.size,
perm: "rw",