mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 15:47:23 +01:00
fix whitespace report stuff
This commit is contained in:
parent
ef1aea2f29
commit
022e2c7585
1 changed files with 2 additions and 2 deletions
|
|
@ -266,8 +266,8 @@ internal class DiscordBot : IHostedService
|
|||
eb.AddField("Reported User", reportedUserSb.ToString());
|
||||
eb.AddField("Reporting User", reportingUserSb.ToString());
|
||||
eb.AddField("Report Date (UTC)", report.ReportDate);
|
||||
eb.AddField("Report Reason", report.ReportReason ?? "-");
|
||||
eb.AddField("Reported User Profile Description", string.IsNullOrEmpty(reportedUserProfile.UserDescription) ? "-" : reportedUserProfile.UserDescription);
|
||||
eb.AddField("Report Reason", string.IsNullOrWhiteSpace(report.ReportReason) ? "-" : report.ReportReason);
|
||||
eb.AddField("Reported User Profile Description", string.IsNullOrWhiteSpace(reportedUserProfile.UserDescription) ? "-" : reportedUserProfile.UserDescription);
|
||||
eb.AddField("Reported User Profile Is NSFW", reportedUserProfile.IsNSFW);
|
||||
|
||||
var cb = new ComponentBuilder();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue