mirror of
https://github.com/immich-app/immich
synced 2026-08-29 13:15:45 +00:00
6 lines
199 B
TypeScript
6 lines
199 B
TypeScript
|
|
import { AssetEntity } from 'src/entities/asset.entity';
|
||
|
|
|
||
|
|
export const getAssetDateTime = (asset: AssetEntity | undefined) => {
|
||
|
|
return asset?.exifInfo?.dateTimeOriginal || asset?.fileCreatedAt;
|
||
|
|
};
|