Skip to content

Commit

Permalink
Update start.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SHABIN-K authored Sep 6, 2021
1 parent 8e58840 commit 15eb9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ async def not_joined(client: Client, message: Message):
try_url = f"https://t.me/{client.username}?start={argument}"
except ValueError:
pass
reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton("Join Channel", url = client.invitelink)],[InlineKeyboardButton("🔃Try Again", url=try_url)]]])
reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton("Join Channel", url = client.invitelink)],[InlineKeyboardButton("🔃Try Again", url=try_url)]])
await message.reply(
text = FORCE_MSG.format(
first = message.from_user.first_name,
Expand Down Expand Up @@ -170,4 +170,4 @@ async def send_text(bot, m: Message):
else:
msg = await m.reply_text(REPLY_ERROR, m.message_id)
await asyncio.sleep(8)
await msg.delete()
await msg.delete()

0 comments on commit 15eb9c1

Please sign in to comment.