From a91c796b0e4ea5c282eab94ccfdde1b456e0ba2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elena=20Torr=C3=B3?= Date: Wed, 19 Aug 2026 16:19:15 +0200 Subject: [PATCH] :bug: Fix missing zip export on tempfile types (#11292) --- common/src/app/common/media.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/media.cljc b/common/src/app/common/media.cljc index 3d67bc75b6..a5a74e6c75 100644 --- a/common/src/app/common/media.cljc +++ b/common/src/app/common/media.cljc @@ -23,7 +23,7 @@ "image/svg+xml"}) (def tempfile-types - (conj image-types "application/pdf")) + (conj image-types "application/pdf" "application/zip")) (defn format->extension [format]