mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-21 14:38:30 +00:00
fix #781
This commit is contained in:
parent
dbb4bb3674
commit
3266babc30
@ -114,7 +114,7 @@ let Avatar = {
|
|||||||
if (!Common.cfg('avatarCard')) {
|
if (!Common.cfg('avatarCard')) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
let uidRet = /[0-9]{9}/.exec(msg)
|
let uidRet = /(18|[1-9])[0-9]{8}/g.exec(msg)
|
||||||
if (uidRet) {
|
if (uidRet) {
|
||||||
e.uid = uidRet[0]
|
e.uid = uidRet[0]
|
||||||
msg = msg.replace(uidRet[0], '')
|
msg = msg.replace(uidRet[0], '')
|
||||||
|
@ -87,7 +87,7 @@ app.reg({
|
|||||||
name: '角色查询',
|
name: '角色查询',
|
||||||
fn: ProfileStat.avatarList,
|
fn: ProfileStat.avatarList,
|
||||||
rule: /^#喵喵(角色|查询)[ |0-9]*$/,
|
rule: /^#喵喵(角色|查询)[ |0-9]*$/,
|
||||||
yzRule: /^(#(五|四|5|4|星)*(角色|查询|查询角色|角色查询|人物)[ |0-9]*$)|(^(#*uid|#*UID)\+*([1-9]|18)[0-9]{8}$)|(^#[\+|+]*([1-9]|18)[0-9]{8})/,
|
yzRule: /^(#(五|四|5|4|星)*(角色|查询|查询角色|角色查询|人物)[ |0-9]*$)|(^(#*uid|#*UID)\+*(18|[1-9])[0-9]{8}$)|(^#[\+|+]*(18|[1-9])[0-9]{8})/,
|
||||||
yzCheck: () => Cfg.get('avatarList', false)
|
yzCheck: () => Cfg.get('avatarList', false)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ import { miaoPath } from '#miao.path'
|
|||||||
* 获取面板查询的 目标uid
|
* 获取面板查询的 目标uid
|
||||||
* */
|
* */
|
||||||
const _getTargetUid = async function (e) {
|
const _getTargetUid = async function (e) {
|
||||||
let uidReg = /([1-9]|18)[0-9]{8}/
|
let uidReg = /(18|[1-9])[0-9]{8}/
|
||||||
|
|
||||||
if (e.uid && uidReg.test(e.uid)) {
|
if (e.uid && uidReg.test(e.uid)) {
|
||||||
return e.uid
|
return e.uid
|
||||||
|
@ -42,7 +42,7 @@ let ProfileDetail = {
|
|||||||
e._profileMsg = changeMsg
|
e._profileMsg = changeMsg
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let uidRet = /[0-9]{9}/.exec(msg)
|
let uidRet = /(18|[1-9])[0-9]{8}/g.exec(msg)
|
||||||
if (uidRet) {
|
if (uidRet) {
|
||||||
e.uid = uidRet[0]
|
e.uid = uidRet[0]
|
||||||
msg = msg.replace(uidRet[0], '')
|
msg = msg.replace(uidRet[0], '')
|
||||||
|
@ -18,7 +18,7 @@ const ProfileAvatar = {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
let { uid, e } = player
|
let { uid, e } = player
|
||||||
if (uid.toString().length !== 9 || !e) {
|
if (![9, 10].includes(uid.toString().length) || !e) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
let ret = await Serv.req(e, player)
|
let ret = await Serv.req(e, player)
|
||||||
|
Loading…
Reference in New Issue
Block a user