diff --git a/src/main/kotlin/com/swm_standard/phote/external/aws/S3Service.kt b/src/main/kotlin/com/swm_standard/phote/external/aws/S3Service.kt index 0dd9d7f..0bd20b4 100644 --- a/src/main/kotlin/com/swm_standard/phote/external/aws/S3Service.kt +++ b/src/main/kotlin/com/swm_standard/phote/external/aws/S3Service.kt @@ -74,7 +74,7 @@ class S3Service( class FileValidate { companion object { - private val IMAGE_EXTENSIONS: List = listOf("jpg", "png", "gif", "webp") + private val IMAGE_EXTENSIONS: List = listOf("jpg", "png", "gif", "webp", "jpeg") fun checkImageFormat(fileName: String) { val extensionIndex = fileName.lastIndexOf('.')