#更新面板 功能升级,可自动使用,支持国际服UID

`#面板`等命令不再需要cookie,支持查他人
一些其他的样式及功能调整
由于整体逻辑变化,喵喵1.6.0之前更新的面板数据无法查看,需要重新更新数据
This commit is contained in:
yoimiya-kokomi 2022-06-05 06:36:37 +08:00
parent 8dbcc30222
commit f0be4ec6d4

View File

@ -915,9 +915,15 @@ export async function getProfileAll(e) {
ds.name && chars.push(ds.name)
});
if (chars.length === 0) {
e.reply("尚未获取任何角色数据");
await profileHelp(e);
if (await autoRefresh(e)) {
await getProfileAll(e);
return true;
} else {
e.reply("尚未获取任何角色数据");
await profileHelp(e);
}
return true;
}