Page Titles & All Photos Page #5

Merged
me merged 14 commits from dev into main 2025-06-06 08:02:52 -07:00
4 changed files with 269 additions and 133 deletions
Showing only changes of commit 6fd8525dad - Show all commits

View File

@ -212,7 +212,8 @@ async function main() {
case "apk": case "apk":
mime = "application/vnd.android.package-archive"; mime = "application/vnd.android.package-archive";
break; break;
case "jpg" || "jpeg": case "jpg":
case "jpeg":
mime = "image/jpeg"; mime = "image/jpeg";
break; break;
case "png": case "png":
@ -224,7 +225,9 @@ async function main() {
case "zip": case "zip":
mime = "application/zip"; mime = "application/zip";
break; break;
case "txt" || "csv" || "md": case "md":
case "txt":
case "csv":
mime = "text/*"; mime = "text/*";
break; break;
default: default: