Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
surajkumar committed May 29, 2024
1 parent e241d3e commit f4a3dfa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ Message.class, new CreateMessageBuilder(channelId).embeds(embeds).build()
);
}

public AsyncResponse<MessageReaction> createReaction(
public AsyncResponse<Void> createReaction(
long channelId,
long messageId,
Emoji emoji
) {
return responseParser.callAndParse(
MessageReaction.class, new CreateReactionRequest(channelId, messageId, emoji)
Void.class, new CreateReactionRequest(channelId, messageId, emoji)
);
}

Expand Down

0 comments on commit f4a3dfa

Please sign in to comment.