Skip to content

Commit 42013fe

Browse files
committed
Domain sync
1 parent 9571bf1 commit 42013fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/fusionauth/client/FusionAuthClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,8 +523,8 @@ public ClientResponse<AccessToken, OAuthError> clientCredentialsGrant(String cli
523523
* @param request The request object that contains all the information used to create the user comment.
524524
* @return The ClientResponse object.
525525
*/
526-
public ClientResponse<Void, Errors> commentOnUser(UserCommentRequest request) {
527-
return start(Void.TYPE, Errors.class)
526+
public ClientResponse<UserCommentResponse, Errors> commentOnUser(UserCommentRequest request) {
527+
return start(UserCommentResponse.class, Errors.class)
528528
.uri("/api/user/comment")
529529
.bodyHandler(new JSONBodyHandler(request, objectMapper()))
530530
.post()

0 commit comments

Comments
 (0)