Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove discriminators from discord appeals
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent dbf6434 commit 63b6392
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions functions/api/appeals/submit.ts
Expand Up @@ -75,7 +75,6 @@ export async function onRequestPost(context: RequestContext) {
id: appealId,
reason_for_unban: whyUnban,
user: {
discriminator: currentUser.discriminator,
email: currentUser.email,
id: currentUser.id,
username: currentUser.username,
Expand All @@ -96,7 +95,7 @@ export async function onRequestPost(context: RequestContext) {
fields: [
{
name: "Submitter",
value: `${currentUser.username}#${currentUser.discriminator} (${currentUser.id})`,
value: `${currentUser.username} (${currentUser.id})`,
},
],
},
Expand Down

0 comments on commit 63b6392

Please sign in to comment.