Browse Source

fix(web): not displaying assets in album after adding shared user (#2804)

Alex 2 years ago
parent
commit
1cd5df7558
1 changed files with 1 additions and 0 deletions
  1. 1 0
      server/src/infra/repositories/album.repository.ts

+ 1 - 0
server/src/infra/repositories/album.repository.ts

@@ -159,6 +159,7 @@ export class AlbumRepository implements IAlbumRepository {
       relations: {
         owner: true,
         sharedUsers: true,
+        assets: true,
       },
     });
   }