Skip to content

Commit

Permalink
fix: drive res missing
Browse files Browse the repository at this point in the history
  • Loading branch information
hlf20010508 committed Dec 29, 2023
1 parent f3b9c95 commit 801b8d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/handlers/drive.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from modules.env import tg_user_name
from modules.utils import check_in_group, check_tg_login, cmd_parser
from modules.handlers.auth import od_auth
from modules.res import drive_res


@tg_bot.on(events.NewMessage(pattern="/drive", incoming=True, from_users=tg_user_name))
Expand Down Expand Up @@ -107,5 +108,5 @@ async def drive_handler(event):
else:
await event.reply('Account index out of range.')
else:
await event.reply()
await event.reply(drive_res)
raise events.StopPropagation

0 comments on commit 801b8d1

Please sign in to comment.