From 358225daee78dce6b740e89ec010a89186a8cc08 Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Mon, 3 Nov 2025 10:43:55 +0100 Subject: [PATCH] added webp to the list of image formats recognized by the files page Signed-off-by: Stephan Richter --- frontend/src/routes/files/Index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/files/Index.svelte b/frontend/src/routes/files/Index.svelte index 88a0f77..b687c35 100644 --- a/frontend/src/routes/files/Index.svelte +++ b/frontend/src/routes/files/Index.svelte @@ -6,7 +6,7 @@ import { t } from '../../translations.svelte'; import { user } from '../../user.svelte'; - const image_extensions = ['jpg','jpeg','gif','png','svg']; + const image_extensions = ['jpg','jpeg','gif','png','svg','webp']; const router = useTinyRouter(); let children = $state({}); let new_dir = $state(null);