fix(server): exif extraction swapped params (#1914)

This commit is contained in:
Michel Heusschen
2023-03-01 17:55:24 +01:00
committed by GitHub
parent 977740045a
commit 830f4268c3
2 changed files with 3 additions and 3 deletions

View File

@@ -6,5 +6,5 @@ export interface IAssetRepository {
deleteAll(ownerId: string): Promise<void>;
getAll(): Promise<AssetEntity[]>;
save(asset: Partial<AssetEntity>): Promise<AssetEntity>;
findLivePhotoMatch(livePhotoCID: string, type: AssetType, otherAssetId: string): Promise<AssetEntity | null>;
findLivePhotoMatch(livePhotoCID: string, otherAssetId: string, type: AssetType): Promise<AssetEntity | null>;
}