Compare commits

..

No commits in common. "404a46ec157cf9df722c42b00b1b130563de0187" and "0fdb365bb2d9e96f658afd9bf8b009b74889752d" have entirely different histories.

2 changed files with 4 additions and 12 deletions

View File

@ -76,8 +76,5 @@
"commands": [
"start",
"rules"
],
"commands_admin": [
"reboot"
]
}

13
main.py
View File

@ -369,7 +369,6 @@ if __name__ == "__main__":
t = Thread(target=background_task)
t.start()
# Registering user commands
for entry in os.listdir(configGet("locale", "locations")):
if entry.endswith(".json"):
commands_list = []
@ -377,19 +376,15 @@ if __name__ == "__main__":
commands_list.append(BotCommand(command, locale(command, "commands", locale=entry.replace(".json", ""))))
app.set_bot_commands(commands_list, language_code=entry.replace(".json", "")) # type: ignore
# Registering user commands for fallback locale
commands_list = []
for command in configGet("commands"):
commands_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale_fallback"))))
app.set_bot_commands(commands_list) # type: ignore
# Registering admin commands
commands_admin_list = []
for command in configGet("commands"):
commands_admin_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale"))))
for command in configGet("commands_admin"):
commands_admin_list.append(BotCommand(command, locale(command, "commands_admin", locale=configGet("locale"))))
app.set_bot_commands(commands_admin_list, scope=BotCommandScopeChat(chat_id=configGet("admin"))) # type: ignore
app.set_bot_commands([ # type: ignore
BotCommand("reboot", locale("reboot", "commands_admin", locale=configGet("locale"))),
],
scope=BotCommandScopeChat(chat_id=configGet("admin")))
idle()