We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07b789 commit ef2bbdfCopy full SHA for ef2bbdf
plugins/start.py
@@ -67,7 +67,13 @@ async def start_command(client: Client, message: Message):
67
]
68
)
69
await message.reply_text(
70
- text = START_MSG.format(firstname = message.chat.first_name),
+ text = START_MSG.format(
71
+ first = message.chat.first_name,
72
+ last = message.chat.last_name,
73
+ username = None if not message.chat.username else '@' + message.chat.username,
74
+ mention = message.from_user.mention,
75
+ id = message.from_user.id
76
+ ),
77
reply_markup = reply_markup,
78
disable_web_page_preview = True,
79
quote = True
0 commit comments