Skip to content

Commit

Permalink
Update start.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shahsad-kp authored May 17, 2021
1 parent 8531e4f commit 944c334
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ async def start_command(client: Client, message: Message):
)
await message.reply_text(
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,
first = message.from_user.first_name,
last = message.from_user.last_name,
username = None if not message.from_user.username else '@' + message.from_user.username,
mention = message.from_user.mention,
id = message.from_user.id
),
Expand Down

0 comments on commit 944c334

Please sign in to comment.