Skip to content

Commit

Permalink
refactor : 영어 검색시 와인 영문명 반환 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
imenuuu committed Oct 13, 2024
1 parent 724bc83 commit 2294f62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private WineResponse.SearchWineDto convertWineInfo(Wine result, String content)
.wineId(result.getId())
.country(result.getCountry())
.type(result.getType())
.name(result.getName())
.name(name)
.varietal(result.getVarietal())
.build();
}
Expand Down

0 comments on commit 2294f62

Please sign in to comment.