Skip to content

Commit

Permalink
Revert "[mod] #238 코스 업로드 시 null 처리 추가"
Browse files Browse the repository at this point in the history
This reverts commit 012cf62.
  • Loading branch information
dongx0915 committed Jan 16, 2024
1 parent ac4d6e8 commit 059b8f2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ class DrawViewModel @Inject constructor(
)
),
title = courseTitle,
distance = distanceSum.value ?: 0.0f,
departureAddress = departureAddress.value ?: "", //커스텀의 경우 지금 여기에 들어가는 게 아무것도 없음.
departureName = departureName.value ?: ""
distance = distanceSum.value!!,
departureAddress = departureAddress.value!!, //커스텀의 경우 지금 여기에 들어가는 게 아무것도 없음.
departureName = departureName.value!!
).toRequestBody()
)
}.onSuccess {
Expand Down

0 comments on commit 059b8f2

Please sign in to comment.