From c70eb17c169e3838d356d3abb113a5381dad183b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Thu, 14 Jan 2021 10:25:39 +0100 Subject: [PATCH] fix jpg issues in the documents-table --- app/Models/Document.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Models/Document.php b/app/Models/Document.php index f9ef8e9ccc7f..59b0f12edd5a 100644 --- a/app/Models/Document.php +++ b/app/Models/Document.php @@ -44,6 +44,9 @@ class Document extends BaseModel 'jpeg' => [ 'mime' => 'image/jpeg', ], + 'jpg' => [ + 'mime' => 'image/jpeg', + ], 'tiff' => [ 'mime' => 'image/tiff', ],