Skip to content

Commit

Permalink
fix typo on asset-media.service.ts (#12486)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbustamantes authored Sep 9, 2024
1 parent 0a649f2 commit a287a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/services/asset-media.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export class AssetMediaService {
throw new BadRequestException('Live photo video not found');
}
if (motionAsset.type !== AssetType.VIDEO) {
throw new BadRequestException('Live photo vide must be a video');
throw new BadRequestException('Live photo video must be a video');
}
if (motionAsset.ownerId !== auth.user.id) {
throw new BadRequestException('Live photo video does not belong to the user');
Expand Down

0 comments on commit a287a76

Please sign in to comment.