fix: treat unknown as m4a

issue #178
This commit is contained in:
C4illin 2024-11-13 13:08:40 +01:00
parent 2386543e5c
commit 1a442d6e69

View file

@ -11,6 +11,8 @@ export const normalizeFiletype = (filetype: string): string => {
return "latex";
case "md":
return "markdown";
case "unknown":
return "m4a";
default:
return lowercaseFiletype;
}