mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-05 03:23:49 +08:00
fix: cqcode fix url
之前写的时候憨批了
This commit is contained in:
parent
001d9aa0d6
commit
8db68f9427
@ -443,7 +443,13 @@ S1: // Plain Text
|
|||||||
if *(*byte)(add(ptr, uintptr(i))) == '[' && i+4 < l &&
|
if *(*byte)(add(ptr, uintptr(i))) == '[' && i+4 < l &&
|
||||||
*(*uint32)(add(ptr, uintptr(i))) == magicCQ { // Magic :uint32([]byte("[CQ:"))
|
*(*uint32)(add(ptr, uintptr(i))) == magicCQ { // Magic :uint32([]byte("[CQ:"))
|
||||||
if i > j {
|
if i > j {
|
||||||
r = append(r, message.NewText(CQCodeUnescapeText(s[j:i])))
|
if SplitURL {
|
||||||
|
for _, str := range global.SplitURL(CQCodeUnescapeText(s[j:i])) {
|
||||||
|
r = append(r, message.NewText(str))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
r = append(r, message.NewText(CQCodeUnescapeText(s[j:i])))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
CQBegin = i
|
CQBegin = i
|
||||||
i += 4
|
i += 4
|
||||||
@ -501,7 +507,13 @@ S4: // CQCode param value
|
|||||||
goto End
|
goto End
|
||||||
End:
|
End:
|
||||||
if i > j {
|
if i > j {
|
||||||
r = append(r, message.NewText(CQCodeUnescapeText(s[j:i])))
|
if SplitURL {
|
||||||
|
for _, str := range global.SplitURL(CQCodeUnescapeText(s[j:i])) {
|
||||||
|
r = append(r, message.NewText(str))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
r = append(r, message.NewText(CQCodeUnescapeText(s[j:i])))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user