Skip to content

Commit

Permalink
Fix : mapposition 버그수정
Browse files Browse the repository at this point in the history
Fix : mapposition 버그수정
  • Loading branch information
begong313 authored May 20, 2024
2 parents 63c1c0a + 2e59733 commit 4dca92e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,9 @@ public ResponseEntity<?> startSearching(
public ResponseEntity<?> getMapPosition(
@PathVariable Long id,
@RequestParam(required = false, value = "step") String s,
@RequestParam(required = false, value = "search-id") long searchHistoryId
@RequestParam(required = false, value = "search-id") Long searchHistoryId
) {
if (searchHistoryId != 0) {
if (searchHistoryId != null) {
return ResponseEntity.ok().body(new SuccessResponse(searchResultService.getSearchResultsBySearchId(searchHistoryId)));
}
Step step = Step.fromValue(s);
Expand Down

0 comments on commit 4dca92e

Please sign in to comment.