Display discriminator in author label

This commit is contained in:
Oliver Booth 2022-07-23 15:35:29 +01:00
parent 86849b9c0e
commit 580f044511
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 1 additions and 1 deletions

View File

@ -234,6 +234,6 @@ public static class DiscordEmbedBuilderExtensions
} }
#endif #endif
return builder.WithAuthor(user.Username, iconUrl: user.AvatarUrl); return builder.WithAuthor(user.GetUsernameWithDiscriminator(), iconUrl: user.AvatarUrl);
} }
} }