Skip to content

Commit

Permalink
[fix] #304 - Query encoded true 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
hansh0101 committed Jun 20, 2022
1 parent cacb3b9 commit 7cb3193
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ interface UserPlanListService {
@GET("v1/plans")
suspend fun fetchUserPlanList(
@Query("size") size: Int,
@Query("sort") sort: String,
@Query("sort", encoded = true) sort: String,
@Query("userId") userId: Int
): ResponseUserPlanList

@GET("v1/plans")
suspend fun fetchMoreUserPlanList(
@Query("size") size: Int,
@Query("sort") sort: String,
@Query("sort", encoded = true) sort: String,
@Query("userId") userId: Int,
@Query("lastPlanId") lastPlanId: Int
): ResponseUserPlanList
Expand Down

0 comments on commit 7cb3193

Please sign in to comment.