Disable background jobs on mobile

This commit is contained in:
Zef Hemel
2023-01-25 18:29:47 +01:00
parent ca8b8d9a84
commit bd152dd297
12 changed files with 139 additions and 101 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ for await (
const s = await Deno.stat(fullPath);
allFiles.push({
name: fullPath.substring(rootDir.length + 1),
lastModified: 0,
lastModified: Date.now(),
contentType: mime.getType(fullPath) || "application/octet-stream",
size: s.size,
perm: "rw",