mirror of
https://github.com/chrononeko/chronocat.git
synced 2024-11-25 01:29:46 +00:00
fix(shell): satori: api: message.create
select direct forward
This commit is contained in:
parent
381cfcdbdb
commit
d66df3effd
@ -68,13 +68,15 @@ async function messageCreateUsingJson({
|
||||
| 'chronocat.internal.message.create2.markdown' =
|
||||
'chronocat.internal.message.create2.normal'
|
||||
|
||||
const forwards = cctx.chronocat.h
|
||||
.select(payloadRich.content, 'message')
|
||||
const forwards =
|
||||
// cctx.chronocat.h.select(payloadRich.content, 'message')
|
||||
payloadRich.content
|
||||
.filter((x) => x.type === 'message') // 直接子代而非所有子代
|
||||
.filter((x) => x.attrs['forward'])
|
||||
|
||||
if (forwards.length) {
|
||||
if (forwards.length > 1) {
|
||||
const err = `尚未支持单次请求发送多条「逐条转发」消息。来自 ${req.socket.remoteAddress}`
|
||||
const err = `尚未支持单次请求发送多条转发消息。来自 ${req.socket.remoteAddress}`
|
||||
|
||||
cctx.chronocat.l.error(err, {
|
||||
code: 501,
|
||||
|
Loading…
Reference in New Issue
Block a user