mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
fix(server): Handle exposure time correctly (#1432)
This commit is contained in:
4
web/src/api/open-api/api.ts
generated
4
web/src/api/open-api/api.ts
generated
@@ -1116,10 +1116,10 @@ export interface ExifResponseDto {
|
||||
'iso'?: number | null;
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @type {string}
|
||||
* @memberof ExifResponseDto
|
||||
*/
|
||||
'exposureTime'?: number | null;
|
||||
'exposureTime'?: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
|
||||
@@ -152,7 +152,7 @@
|
||||
<p>{`ƒ/${asset.exifInfo.fNumber.toLocaleString(locale)}` || ''}</p>
|
||||
|
||||
{#if asset.exifInfo.exposureTime}
|
||||
<p>{`1/${asset.exifInfo.exposureTime}`}</p>
|
||||
<p>{`${asset.exifInfo.exposureTime}`}</p>
|
||||
{/if}
|
||||
|
||||
{#if asset.exifInfo.focalLength}
|
||||
|
||||
Reference in New Issue
Block a user