ViewPhoto: re-add accidentally omitted units

This commit is contained in:
Aaron van Geffen 2024-01-12 10:42:51 +01:00
parent d17d98a838
commit b48f7dbb9e
1 changed files with 2 additions and 2 deletions

View File

@ -98,10 +98,10 @@ class ViewPhoto extends HTMLController
$metaData['Shutter Speed'] = $exif->shutterSpeedFraction();
if (!empty($exif->aperture))
$metaData['Aperture'] = number_format($exif->aperture, 1);
$metaData['Aperture'] = 'f/' . number_format($exif->aperture, 1);
if (!empty($exif->focal_length))
$metaData['Focal Length'] = $exif->focal_length;
$metaData['Focal Length'] = $exif->focal_length . ' mm';
if (!empty($exif->iso))
$metaData['ISO Speed'] = $exif->iso;