Skip to content

Commit

Permalink
fix : Home API 에서 유저 캐릭터 이미지 나오도록 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
LHS-11 committed Nov 19, 2023
1 parent 991399e commit fbb1029
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public String getCharacterImageUrl(Gender gender, Character character) {
String bucketName = "zenefit-bucket";
String folderName = "character";

String bucketImageUrl = gender.getCode() + "-" + character.getName();
String bucketImageUrl = gender.getCode() + "-" + character.name().toLowerCase();

String s3ObjectKey = folderName + "/" + bucketImageUrl + ".png"; // 이미지 파일의 객체 키

Expand Down

0 comments on commit fbb1029

Please sign in to comment.