From 767bbf83313563ec6b8231432851b9a49f8eefe0 Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Tue, 20 Sep 2022 15:54:29 +0200 Subject: [PATCH] consider heic/heif attachments as photos so previews can be served, fallback to media if previewManager does not support them Signed-off-by: Julien Veyssier --- lib/Controller/AttachmentController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Controller/AttachmentController.php b/lib/Controller/AttachmentController.php index df028e93ecd..c495c1aac02 100644 --- a/lib/Controller/AttachmentController.php +++ b/lib/Controller/AttachmentController.php @@ -51,6 +51,8 @@ class AttachmentController extends Controller { 'image/bmp', 'image/svg+xml', 'image/webp', + 'image/heic', + 'image/heif', ]; private AttachmentService $attachmentService;