mirror of
https://github.com/baiqwerdvd/StarRailUID.git
synced 2025-05-05 03:03:45 +08:00
🐛 修复sr开启自动签到
This commit is contained in:
parent
0eeb17c5cb
commit
9d85cbb0b2
@ -57,6 +57,7 @@ async def open_switch_func(bot: Bot, ev: Event):
|
|||||||
return await bot.send(UID_HINT)
|
return await bot.send(UID_HINT)
|
||||||
|
|
||||||
im = await set_config_func(
|
im = await set_config_func(
|
||||||
|
ev,
|
||||||
ev.bot_id,
|
ev.bot_id,
|
||||||
config_name=config_name,
|
config_name=config_name,
|
||||||
uid=uid,
|
uid=uid,
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
|
from gsuid_core.models import Event
|
||||||
from gsuid_core.logger import logger
|
from gsuid_core.logger import logger
|
||||||
|
from gsuid_core.utils.database.models import GsUser
|
||||||
|
from gsuid_core.sv import get_plugin_available_prefix
|
||||||
|
from gsuid_core.utils.database.config_switch import set_database_value
|
||||||
|
|
||||||
from .config_default import CONIFG_DEFAULT
|
|
||||||
from .sr_config import srconfig
|
from .sr_config import srconfig
|
||||||
from ..utils.database.model import SrPush
|
from ..utils.database.model import SrPush
|
||||||
|
from .config_default import CONIFG_DEFAULT
|
||||||
|
|
||||||
PUSH_MAP = {
|
PUSH_MAP = {
|
||||||
"体力": "stamina",
|
"体力": "stamina",
|
||||||
@ -32,6 +36,7 @@ async def set_push_value(bot_id: str, func: str, uid: str, value: int):
|
|||||||
|
|
||||||
|
|
||||||
async def set_config_func(
|
async def set_config_func(
|
||||||
|
ev: Event,
|
||||||
bot_id: str,
|
bot_id: str,
|
||||||
config_name: str = "",
|
config_name: str = "",
|
||||||
uid: str = "0",
|
uid: str = "0",
|
||||||
@ -58,7 +63,23 @@ async def set_config_func(
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
|
if await GsUser.data_exist(sr_uid=uid):
|
||||||
|
text = await set_database_value(
|
||||||
|
GsUser,
|
||||||
|
"sr",
|
||||||
|
"sr开启",
|
||||||
|
ev.text.strip(),
|
||||||
|
uid,
|
||||||
|
None,
|
||||||
|
option,
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
return '请先绑定Cookies!'
|
||||||
|
|
||||||
|
if not text:
|
||||||
return "该配置项不存在!"
|
return "该配置项不存在!"
|
||||||
|
else:
|
||||||
|
return text
|
||||||
|
|
||||||
if option == "on":
|
if option == "on":
|
||||||
succeed_msg = "开启至私聊消息!"
|
succeed_msg = "开启至私聊消息!"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user