Skip to content

Commit

Permalink
bug fix : 프로그램 필터 위도경도 null 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
MyunghyunNero committed Nov 22, 2023
1 parent fafd0d5 commit 59c7c39
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ private List<ProgramMainRes> getProgramMainRes(List<Program> programs){
program.getRecruitEndDate().getMonth(),program.getRecruitEndDate().getDayOfMonth());
String strRemainDay = DurationCalcurator.getDuration(localDate);
programMainRes.setRemainDay(strRemainDay);
programMainRes.setLatitude(program.getLatitude());
programMainRes.setLongitude(program.getLongitude());
programMainRes.setRecruitStartDate(program.getRecruitStartDate());
programMainRes.setRecruitEndDate(program.getRecruitEndDate());
programMainRes.setHashTag(Arrays.stream(program.getHashTags().split(","))
Expand Down

0 comments on commit 59c7c39

Please sign in to comment.