Skip to content

Commit

Permalink
Update Bot.java
Browse files Browse the repository at this point in the history
fixing unicode check mark linux issue #9
  • Loading branch information
dgradecak authored Feb 9, 2024
1 parent 430b8c9 commit fad56df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public String sendLoginConfirmRequest(String text, String userId)
Message message = this.JDA.openPrivateChannelById(userId).
flatMap(privateChannel -> privateChannel.sendMessageEmbeds(embedBuilder.build())).complete();

message.addReaction(Emoji.fromUnicode("")).queue();
message.addReaction(Emoji.fromUnicode("U+2705")).queue();
return message.getId();
}
catch (Exception ignored)
Expand Down

0 comments on commit fad56df

Please sign in to comment.