Remove gif from allowed image types

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-03-31 16:56:38 +04:00
parent 687148e2c1
commit bd3869e0f0
3 changed files with 1 additions and 3 deletions

View File

@@ -72,7 +72,6 @@ var FileTypes = []FileType{
// Image types
{MimeType: "image/jpeg", Extensions: []string{".jpg", ".jpeg"}, Category: CategoryImage},
{MimeType: "image/png", Extensions: []string{".png"}, Category: CategoryImage},
{MimeType: "image/gif", Extensions: []string{".gif"}, Category: CategoryImage},
{MimeType: "image/svg+xml", Extensions: []string{".svg"}, Category: CategoryImage},
{MimeType: "image/webp", Extensions: []string{".webp"}, Category: CategoryImage},