mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-12-08 20:29:05 +00:00
fix(server): get shared link album info doesn't contain owner property (#1708)
This commit is contained in:
@@ -20,7 +20,7 @@ export class AlbumEntity {
|
|||||||
@Column()
|
@Column()
|
||||||
ownerId!: string;
|
ownerId!: string;
|
||||||
|
|
||||||
@ManyToOne(() => UserEntity)
|
@ManyToOne(() => UserEntity, { eager: true })
|
||||||
owner!: UserEntity;
|
owner!: UserEntity;
|
||||||
|
|
||||||
@Column({ default: 'Untitled Album' })
|
@Column({ default: 'Untitled Album' })
|
||||||
|
|||||||
Reference in New Issue
Block a user