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:
Carsten Otto
2025-01-28 21:33:38 +01:00
committed by GitHub
parent cb6d94c7a7
commit da580d4685
9 changed files with 17 additions and 20 deletions

View File

@@ -335,8 +335,8 @@ describe(MetadataService.name, () => {
expect(assetMock.update).toHaveBeenCalledWith({
id: assetStub.image.id,
duration: null,
fileCreatedAt: assetStub.image.createdAt,
localDateTime: new Date('2023-02-23T05:06:29.716Z'),
fileCreatedAt: assetStub.image.fileCreatedAt,
localDateTime: assetStub.image.fileCreatedAt,
});
});