Skip to content

Commit

Permalink
support webp image format #41
Browse files Browse the repository at this point in the history
  • Loading branch information
OBrink committed Aug 11, 2022
1 parent b21e0e7 commit 9974fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/FileUploadController.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function fileUploadPost(Request $request)
$processed_images = false;

$structure_depiction_img_paths = array();
$valid_file_endings = array('pdf', 'jpg', 'peg', 'png');
$valid_file_endings = array('pdf', 'jpg', 'peg', 'png', 'ebp');

$files = $request->file('file');
foreach ($files as $file) {
Expand Down

0 comments on commit 9974fdf

Please sign in to comment.