From c04507d1ee5faa869c428cc19fde684a60c04cc3 Mon Sep 17 00:00:00 2001 From: JovannMC Date: Thu, 29 May 2025 14:23:43 +0300 Subject: [PATCH] fix: ???? what was i doing DONT MAKE ME PUSH TO PROD AGAIN WHILE RUNNING LITTLE SLEEP IM SORRY NULL --- src/lib/converters/index.ts | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/lib/converters/index.ts b/src/lib/converters/index.ts index 7867ffa..2165207 100644 --- a/src/lib/converters/index.ts +++ b/src/lib/converters/index.ts @@ -30,20 +30,16 @@ export const categories: Categories = { categories.audio.formats = converters .find((c) => c.name === "ffmpeg") - ?.formatStrings((f) => f.toSupported) - .filter((f) => f !== "mp3") || []; + ?.formatStrings((f) => f.toSupported) || []; categories.video.formats = converters .find((c) => c.name === "vertd") - ?.formatStrings((f) => f.toSupported) - .filter((f) => f !== "mp4") || []; + ?.formatStrings((f) => f.toSupported) || []; categories.image.formats = converters .find((c) => c.name === "libvips") - ?.formatStrings((f) => f.toSupported) - .filter((f) => f !== ".gif") || []; + ?.formatStrings((f) => f.toSupported) || []; categories.docs.formats = converters .find((c) => c.name === "pandoc") - ?.formatStrings((f) => f.toSupported) - .filter((f) => f !== ".pdf") || []; + ?.formatStrings((f) => f.toSupported) || []; \ No newline at end of file