Skip to content

Commit

Permalink
✨ feat: API 조회 시점 변경 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyyena committed Jan 20, 2024
1 parent 5129df6 commit e23f787
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ public ApiResponse<Object> createStamp(
.build();
}

BasicResponse basicResponse = basicService.getBasic(ocid, formattedYesterday);
BasicResponse basicResponse = basicService.getBasic(ocid, apiUpdateToday);
log.info("basicResponse: {}", basicResponse);
long characterLevel = basicResponse.getCharacterLevel();
log.info("characterLevel: {}", characterLevel);

StatResponse statResponse = statService.getStat(ocid, formattedYesterday);
StatResponse statResponse = statService.getStat(ocid, apiUpdateToday);
log.info("statResponse: {}", statResponse);
List<FinalStatResponse> finalStatResponse = statResponse.getFinalStat();
if (finalStatResponse != null && !finalStatResponse.isEmpty()) {
Expand Down

0 comments on commit e23f787

Please sign in to comment.