Skip to content

Commit

Permalink
!HOTFIX: UpdateService에 getUsername 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
daeunchung committed Nov 8, 2022
1 parent c11bc33 commit ae235e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void updateOrderState(OrderRequestDto orderUpdateRequestDto) {
}

User getUser = userService.getUser(orderUpdateRequestDto.getUserId());
orderUpdateRequestDto.setUserInfo(getUser.getName(), getUser.getEmail(), getUser.getPhone());
orderUpdateRequestDto.setUserInfo(getUser.getUsername(), getUser.getEmail(), getUser.getPhone());

if(order.getState() == -1) {
order.setState(0);
Expand Down

0 comments on commit ae235e1

Please sign in to comment.