1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-10 23:22:22 +02:00

fix: broken start/end dates on album update (#17467)

This commit is contained in:
Daniel Dietzler
2025-04-08 17:47:44 +02:00
committed by GitHub
parent 2c31a11e41
commit 15c6506aee

View File

@@ -140,7 +140,7 @@ export class AlbumService extends BaseService {
order: dto.order, order: dto.order,
}); });
return mapAlbumWithoutAssets(updatedAlbum); return mapAlbumWithoutAssets({ ...updatedAlbum, assets: album.assets });
} }
async delete(auth: AuthDto, id: string): Promise<void> { async delete(auth: AuthDto, id: string): Promise<void> {