Skip to content

Commit 65529a7

Browse files
feature: clarify reporter name to avoid confusion (#1097)
1 parent d198f19 commit 65529a7

File tree

1 file changed

+1
-1
lines changed
  • application/src/main/java/org/togetherjava/tjbot/features/moderation/modmail

1 file changed

+1
-1
lines changed

application/src/main/java/org/togetherjava/tjbot/features/moderation/modmail/ModMailCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ private void sendMessage(ModalInteractionEvent event, MessageCreateAction messag
204204
}
205205

206206
private MessageEmbed createModMailMessage(@Nullable User author, String userMessage) {
207-
String authorTag = author == null ? "Anonymous" : author.getName();
207+
String authorTag = (author == null ? "Anonymous" : author.getName()) + " (Reporter)";
208208
String authorAvatar = author == null ? null : author.getAvatarUrl();
209209
return new EmbedBuilder().setTitle("Modmail")
210210
.setAuthor(authorTag, null, authorAvatar)

0 commit comments

Comments
 (0)