mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-21 14:38:30 +00:00
Fix: has_detail_data (#790)
This commit is contained in:
parent
d32efe1fc3
commit
748b25f4fe
@ -21,7 +21,10 @@ export async function RoleCombatSummary (e) {
|
|||||||
resRole = await mys.getRoleCombat(true)
|
resRole = await mys.getRoleCombat(true)
|
||||||
let lvs = Data.getVal(resRole, 'data.0')
|
let lvs = Data.getVal(resRole, 'data.0')
|
||||||
// 检查是否查询到了幻想真境剧诗信息
|
// 检查是否查询到了幻想真境剧诗信息
|
||||||
if (!lvs || !lvs.has_data) {
|
// TODO: 有个 has_data,有个 has_detail_data
|
||||||
|
// 注意可能出现 has_data 为 false,但是 has_detail_data 为 true 的情形
|
||||||
|
// 不知道怎么搞,分别做适配?
|
||||||
|
if (!lvs || !lvs.has_detail_data) {
|
||||||
e.reply('暂未获得本期幻想真境剧诗挑战数据...')
|
e.reply('暂未获得本期幻想真境剧诗挑战数据...')
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user