mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Actually make a tag, not just dump the ID... *facepalm*
This commit is contained in:
parent
f978029137
commit
875729258e
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ async def system_card(conn, client: discord.Client, system: System, is_own_syste
|
||||||
for account_id in await system.get_linked_account_ids(conn):
|
for account_id in await system.get_linked_account_ids(conn):
|
||||||
try:
|
try:
|
||||||
account = await client.get_user_info(account_id)
|
account = await client.get_user_info(account_id)
|
||||||
account_names.append("{} ({}#{})".format(account_id, account.name, account.discriminator))
|
account_names.append("<@{}> ({}#{})".format(account_id, account.name, account.discriminator))
|
||||||
except discord.NotFound:
|
except discord.NotFound:
|
||||||
account_names.append("(deleted account {})".format(account_id))
|
account_names.append("(deleted account {})".format(account_id))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue