Skip to content

Commit

Permalink
Merge pull request #239 from swm-standard/rin/swm-192
Browse files Browse the repository at this point in the history
Fix: S3 jpeg ํ—ˆ์šฉ
  • Loading branch information
RinRinPARK authored Oct 2, 2024
2 parents 95957cc + f25cebc commit 6a72ab0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class S3Service(

class FileValidate {
companion object {
private val IMAGE_EXTENSIONS: List<String> = listOf("jpg", "png", "gif", "webp")
private val IMAGE_EXTENSIONS: List<String> = listOf("jpg", "png", "gif", "webp", "jpeg")

fun checkImageFormat(fileName: String) {
val extensionIndex = fileName.lastIndexOf('.')
Expand Down

0 comments on commit 6a72ab0

Please sign in to comment.