mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 22:27:31 -04:00
check-setup: recommend exif extension
JPEG previews are not correctly oriented when exif is not enabled along with other issues. There's no easy way to discover this either. Signed-off-by: Varun Patil <varunpatil@ucla.edu>
This commit is contained in:
parent
c3a39cbc75
commit
35ea5025dd
1 changed files with 6 additions and 0 deletions
|
|
@ -724,6 +724,12 @@ Raw output
|
|||
$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
|
||||
|
|
|
|||
Loading…
Reference in a new issue