]> BookStack Code Mirror - bookstack/blobdiff - app/Uploads/ImageRepo.php
ExportFormatter: Add book description and check for empty book and chapter descriptio...
[bookstack] / app / Uploads / ImageRepo.php
index 1e58816a4f3fc0b2da387896f78e558d1be87fde..845067fdc29987e318633a079c11f98ef3d6deef 100644 (file)
@@ -166,7 +166,7 @@ class ImageRepo
      */
     public function updateImageFile(Image $image, UploadedFile $file): void
     {
-        if ($file->getClientOriginalExtension() !== pathinfo($image->path, PATHINFO_EXTENSION)) {
+        if (strtolower($file->getClientOriginalExtension()) !== strtolower(pathinfo($image->path, PATHINFO_EXTENSION))) {
             throw new ImageUploadException(trans('errors.image_upload_replace_type'));
         }