Skip to content

Commit

Permalink
fix(#91-change-getUser-request-type): userId parse error was fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
y9Kap committed Mar 5, 2024
1 parent 7bc763e commit 5a15614
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ internal class UsersEngine(
val response = httpClient.get(url.string) {
apiVersion(request.apiVersion)
token(request.token)
parameter("id", request.userId)
parameter("id", request.userId?.string)
}.bodyAsSuccess<UserDetailsSerializable>()
return GetUserRequest.Response(response.type())
}
Expand Down

0 comments on commit 5a15614

Please sign in to comment.