Skip to content

Commit

Permalink
[BE] 지하철 역 조회 시 위도 경도 데이터 오류 수정 (#863)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsulocalize authored Oct 23, 2024
1 parent 585b16b commit 7138197
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private void createChecklistMaintenances(ChecklistRequest checklistRequest, Chec

private void createChecklistStation(ChecklistRequestV1 checklistRequestV1, Checklist checklist) {
ChecklistStationRequest geolocation = checklistRequestV1.geolocation();
checklistStationService.createChecklistStations(checklist, geolocation.latitude(), geolocation.latitude());
checklistStationService.createChecklistStations(checklist, geolocation.latitude(), geolocation.longitude());
}

@Transactional(readOnly = true)
Expand Down

0 comments on commit 7138197

Please sign in to comment.