Add "as text" to the redirect to the error support channel

Many users send a screenshot of the error embed rather than sending the error code as text. Perhaps this would help?
This commit is contained in:
Nidoskull 2025-03-16 01:51:24 +01:00 committed by GitHub
parent 2b7f510e17
commit f2a3392662
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,7 +116,7 @@ public class ErrorMessageService
return new EmbedBuilder() return new EmbedBuilder()
.Color(0xE74C3C) .Color(0xE74C3C)
.Title("Internal error occurred") .Title("Internal error occurred")
.Description($"For support, please send the error code above in {channelInfo} with a description of what you were doing at the time.") .Description($"For support, please send the error code above as text in {channelInfo} with a description of what you were doing at the time.")
.Footer(new Embed.EmbedFooter(errorId)) .Footer(new Embed.EmbedFooter(errorId))
.Timestamp(now.ToDateTimeOffset().ToString("O")) .Timestamp(now.ToDateTimeOffset().ToString("O"))
.Build(); .Build();
@ -140,4 +140,4 @@ public class ErrorMessageService
lastErrorTime = now; lastErrorTime = now;
return true; return true;
} }
} }