mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix: show local dates for range in album summary (#15654)
* fix(web): show local dates for range in album summary * fix(server): show local dates for range in album summary
This commit is contained in:
parent
cb6d94c7a7
commit
da580d4685
9 changed files with 17 additions and 20 deletions
|
|
@ -202,8 +202,8 @@ order by
|
|||
-- AlbumRepository.getMetadataForIds
|
||||
select
|
||||
"albums"."id" as "albumId",
|
||||
min("assets"."fileCreatedAt") as "startDate",
|
||||
max("assets"."fileCreatedAt") as "endDate",
|
||||
min("assets"."localDateTime") as "startDate",
|
||||
max("assets"."localDateTime") as "endDate",
|
||||
count("assets"."id")::int as "assetCount"
|
||||
from
|
||||
"albums"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue