Skip to content

Commit dd29b6a

Browse files
committed
fix reports
1 parent 3d7056e commit dd29b6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/net/javadiscord/javabot/systems/moderation/report/ReportManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ private EmbedBuilder buildReportEmbed(User reported, User reportedBy, String rea
188188
.addField("Reported by", reportedBy.getAsMention(), true)
189189
.addField("Channel", channel.getAsMention(), true)
190190
.addField("Reported on", String.format("<t:%s:F>", Instant.now().getEpochSecond()), false)
191-
.addField("ID", String.format("```%s```", reported.getId()), true)
192-
.addField("Reason", String.format("```%s```", reason), false)
191+
.addField("ID", String.format("``` %s ```", reported.getId()), true)
192+
.addField("Reason", String.format("``` %s ```", reason), false)
193193
.setFooter(reportedBy.getAsTag(), reportedBy.getEffectiveAvatarUrl())
194194
.setTimestamp(Instant.now());
195195
}

0 commit comments

Comments
 (0)