We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ac33cd commit bd244eeCopy full SHA for bd244ee
application/src/main/java/org/togetherjava/tjbot/commands/moderation/WhoIsCommand.java
@@ -122,7 +122,8 @@ public void onSlashCommand(@NotNull final SlashCommandEvent event) {
122
.setDescription(descriptionBuilder);
123
124
return event.replyEmbeds(embedBuilder.build())
125
- .addActionRow(DiscordClientAction.General.USER.asLinkButton("Click to see profile!", user.getId()));
+ .addActionRow(DiscordClientAction.General.USER.asLinkButton("Click to see profile!",
126
+ user.getId()));
127
}
128
129
private static @NotNull String voiceStateToStringItem(@NotNull final Member member) {
0 commit comments