diff --git a/server/src/domain/album/album.service.ts b/server/src/domain/album/album.service.ts index fb348af67..decc89fd2 100644 --- a/server/src/domain/album/album.service.ts +++ b/server/src/domain/album/album.service.ts @@ -64,7 +64,7 @@ export class AlbumService { const album = albums[i]; const { assetCount, startDate, endDate } = await this.albumRepository.getVirtualColumns(album.id); albums[i] = { ...album, assetCount, startDate, endDate }; - } + } } else if (shared === false) { albums = await this.albumRepository.getNotShared(ownerId); } else {