🐛 Fix sign command parse error validate

This commit is contained in:
xtaodada 2024-05-05 15:34:06 +08:00
parent 740e57ca58
commit 82b8e170cd
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659

View File

@ -75,7 +75,7 @@ class Sign(Plugin):
msg = await self._process_auto_sign(user_id, user_id, "开启")
elif args[0] == "关闭自动签到":
msg = await self._process_auto_sign(user_id, message.chat_id, "关闭")
else:
elif args[0] != "sign":
validate = args[0]
if msg:
self.log_user(update, logger.info, "自动签到命令请求 || 参数 %s", args[0])