Skip to content

Commit 801b8d1

Browse files
committed
fix: drive res missing
1 parent f3b9c95 commit 801b8d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/handlers/drive.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from modules.env import tg_user_name
1212
from modules.utils import check_in_group, check_tg_login, cmd_parser
1313
from modules.handlers.auth import od_auth
14+
from modules.res import drive_res
1415

1516

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

0 commit comments

Comments
 (0)