Skip to content

Commit

Permalink
Merge pull request #221 from MikiEremiki/develop
Browse files Browse the repository at this point in the history
fix: исправить сбор текста из аргументов
  • Loading branch information
MikiEremiki authored Dec 8, 2024
2 parents fc4d08b + f549bf6 commit df5950c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/main_hl.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async def send_msg(update: Update, context: ContextTypes.DEFAULT_TYPE):
text, reply_to_message_id=update.message.message_id)
return
type_enter_chat_id = context.args[0]
text = context.args[2:]
text = ' '.join(context.args[2:])
match type_enter_chat_id:
case 'Билет':
ticket_id = context.args[1]
Expand Down

0 comments on commit df5950c

Please sign in to comment.