Skip to content

Commit 4b0753f

Browse files
authored
🚀 feat: v0.3.2 배포 (#56)
* ✨ feat: API 조회 시점 변경 적용 (#55)
1 parent bb7a00c commit 4b0753f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app-maple-stamp-api/src/main/java/com/mapletrend/appmaplestampapi/controller/StampController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,12 @@ public ApiResponse<Object> createStamp(
104104
.build();
105105
}
106106

107-
BasicResponse basicResponse = basicService.getBasic(ocid, formattedYesterday);
107+
BasicResponse basicResponse = basicService.getBasic(ocid, apiUpdateToday);
108108
log.info("basicResponse: {}", basicResponse);
109109
long characterLevel = basicResponse.getCharacterLevel();
110110
log.info("characterLevel: {}", characterLevel);
111111

112-
StatResponse statResponse = statService.getStat(ocid, formattedYesterday);
112+
StatResponse statResponse = statService.getStat(ocid, apiUpdateToday);
113113
log.info("statResponse: {}", statResponse);
114114
List<FinalStatResponse> finalStatResponse = statResponse.getFinalStat();
115115
if (finalStatResponse != null && !finalStatResponse.isEmpty()) {

0 commit comments

Comments
 (0)