Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
DoroWolf committed Dec 18, 2024
1 parent e1d5e10 commit bdfdea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/core/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ async def config_modules(msg: Bot.MessageSession):
for module_ in wait_config:
if module_ not in wait_config_list:
if module_ in alias:
wait_config_list.append(alias[module_])
wait_config_list.append(alias[module_].split()[0])
else:
wait_config_list.append(module_)
wait_config_list.append(module_.split()[0])
msglist = []
recommend_modules_list = []
recommend_modules_help_doc_list = []
Expand Down

0 comments on commit bdfdea8

Please sign in to comment.