Skip to content

Commit

Permalink
Added more fillings in Start Message
Browse files Browse the repository at this point in the history
  • Loading branch information
shahsad-kp authored May 17, 2021
1 parent b07b789 commit ef2bbdf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion plugins/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,13 @@ async def start_command(client: Client, message: Message):
]
)
await message.reply_text(
text = START_MSG.format(firstname = message.chat.first_name),
text = START_MSG.format(
first = message.chat.first_name,
last = message.chat.last_name,
username = None if not message.chat.username else '@' + message.chat.username,
mention = message.from_user.mention,
id = message.from_user.id
),
reply_markup = reply_markup,
disable_web_page_preview = True,
quote = True
Expand Down

0 comments on commit ef2bbdf

Please sign in to comment.