mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Fixed CommandStart
This commit is contained in:
parent
6dc02c0bfa
commit
b8b97b9ed9
1 changed files with 2 additions and 2 deletions
|
|
@ -279,8 +279,8 @@ class CommandStart(Command):
|
|||
await self.validate_mention(bot=bot, command=command)
|
||||
command = self.validate_command(command)
|
||||
command = self.validate_deeplink(command=command)
|
||||
self.do_magic(command=command)
|
||||
return command
|
||||
command = self.do_magic(command=command)
|
||||
return command # noqa: RET504
|
||||
|
||||
def validate_deeplink(self, command: CommandObject) -> CommandObject:
|
||||
if not self.deep_link:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue