Skip to content

Commit

Permalink
feat: allow image size 1
Browse files Browse the repository at this point in the history
  • Loading branch information
CChuYong committed Dec 12, 2024
1 parent e3b4654 commit 9953094
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Mono<RecapUrlDto> createRecapVideo(
@RequestBody
SumoneRecapCreateRequest request
) {
if(request.fileUrls().size() < 2 || request.fileUrls().size() > 10) {
if(request.fileUrls().size() < 1 || request.fileUrls().size() > 10) {
return Mono.error(new RecapPhotoCountNotValidException());
}
return albumQuery.findById(albumId).flatMap(album -> {
Expand Down

0 comments on commit 9953094

Please sign in to comment.