diff --git a/README.md b/README.md index 7737db5..0d26f49 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ConvertX -A self-hosted online file converter. Supports 708 different formats. +A self-hosted online file converter. Supports 808 different formats. ## Features - Convert files to different formats @@ -15,7 +15,9 @@ A self-hosted online file converter. Supports 708 different formats. | Sharp | Images (fast) | 7 | 6 | | Pandoc | Documents | 43 | 65 | | GraphicsMagick | Images | 166 | 133 | -| FFmpeg | Video | 461 | 170 | +| FFmpeg | Video | ~473 | ~280 | + + ## Deployment diff --git a/src/index.tsx b/src/index.tsx index 37ed6cf..4702c59 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -831,7 +831,7 @@ const app = new Elysia() return Bun.file(filePath); }, ) - .get("/converters", async ({ params, jwt, redirect, cookie: { auth } }) => { + .get("/converters", async ({ jwt, redirect, cookie: { auth } }) => { if (!auth?.value) { return redirect("/login"); }