Skip to content

Commit

Permalink
Merge pull request #141 from Genti2024/fix/s3key
Browse files Browse the repository at this point in the history
Fix: #140 s3key를 확장자로 끝나는 형태로 변경
  • Loading branch information
LeeJae-H authored Aug 29, 2024
2 parents 1f64d53 + 4645543 commit da7fe2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ private String createFileId() {

private String createPath(String prefix, String fileName) {
String fileId = createFileId();
return String.format("%s/%s", prefix, fileName + "-" + fileId);
return String.format("%s/%s", prefix, fileId + "-" + fileName);
}
}

0 comments on commit da7fe2f

Please sign in to comment.