Skip to content

Commit

Permalink
update description
Browse files Browse the repository at this point in the history
  • Loading branch information
C4illin committed May 24, 2024
1 parent 8a32c2d commit 64f25f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 |

<!-- many ffmpeg fileformats are duplicates -->

## Deployment

Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Expand Down

0 comments on commit 64f25f9

Please sign in to comment.