Skip to content

Commit

Permalink
Merge pull request #89 from yanyanho/main
Browse files Browse the repository at this point in the history
fix the bug
  • Loading branch information
yanyanho authored Dec 13, 2023
2 parents 60e5b5f + 1dc27da commit ea10145
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public MemberWithTeam getMemberWithTeamInfoByAddress(String address) {

if(member.isPresent()) {
MemberWithTeam memberWithTeam = new MemberWithTeam();
BeanUtils.copyProperties(member, memberWithTeam);
BeanUtils.copyProperties(member.get(), memberWithTeam);
ArrayList teams = new ArrayList();
List<TeamMember> teamMembers = teamMemberRepository.findByMemberId(member.get().getId());

Expand Down

0 comments on commit ea10145

Please sign in to comment.