Skip to content

Commit

Permalink
Merge pull request #319 from apeun-gidaechi/refactor/#316
Browse files Browse the repository at this point in the history
Fix :: DateTime 조회 형태 변경 #316
  • Loading branch information
yeseong0412 authored Oct 17, 2024
2 parents e432cd7 + af09bf3 commit 2b0fb49
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ class NiceSchoolService(
pSize = 1000,
scCode = schoolInfo.scCode,
sdCode = schoolInfo.sdCode,
startDate = startDate,
endDate = endDate
startDate = startDate.replace("-", ""),
endDate = endDate.replace("-", "")
).hisTimetable?.get(1)?.row
}

Expand Down

0 comments on commit 2b0fb49

Please sign in to comment.