Skip to content

Commit

Permalink
Merge pull request #37397 from nextcloud/check-exif
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored Mar 25, 2023
2 parents 36835b7 + 35ea502 commit e493e72
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/settings/lib/Controller/CheckSetupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,12 @@ protected function hasRecommendedPHPModules(): array {
$recommendedPHPModules[] = 'sysvsem';
}

if (!extension_loaded('exif')) {
// used to extract metadata from images
// required for correct orientation of preview images
$recommendedPHPModules[] = 'exif';
}

if (!defined('PASSWORD_ARGON2I')) {
// Installing php-sodium on >=php7.4 will provide PASSWORD_ARGON2I
// on previous version argon2 wasn't part of the "standard" extension
Expand Down

0 comments on commit e493e72

Please sign in to comment.