We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91713bb + f0fbb04 commit 61da26bCopy full SHA for 61da26b
1 file changed
src/tgbot/bot/handlers/common/start.py
@@ -24,7 +24,7 @@ async def handle_start_with_invite_code(
24
if len(params) == 2:
25
id = params[0]
26
token = params[1]
27
-
+
28
id = params
29
token = 123
30
@@ -38,7 +38,7 @@ async def start_handler(
38
) -> None:
39
user_id = int(message.from_user.id)
40
invite_code = command.args
41
- await message.answer(f'{invite_code} {command}')
+ await message.answer(f"{invite_code} {command}")
42
43
if not await user_exists_by_telegram_id(user_id):
44
if invite_code:
0 commit comments