feat(server): auto-link live photos (#1761)

* feat(server): auto-link live photos

* fix: video extraction and linking
This commit is contained in:
Jason Rasmussen 2023-02-16 02:41:51 -05:00 committed by GitHub
parent 7a25d359b7
commit 36197cca98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 73 additions and 3 deletions

View file

@ -44,6 +44,10 @@ export class ExifEntity {
@Column({ type: 'varchar', nullable: true })
city!: string | null;
@Index('IDX_live_photo_cid')
@Column({ type: 'varchar', nullable: true })
livePhotoCID!: string | null;
@Column({ type: 'varchar', nullable: true })
state!: string | null;