We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 894cf41 commit c08e3dfCopy full SHA for c08e3df
1 file changed
plugin/setutime/setu_geter.go
@@ -94,7 +94,8 @@ func init() { // 插件主体
94
}
95
96
// 从缓冲池里抽一张
97
- if id := ctx.Send(ctxext.FakeSenderForwardNode(ctx, *pool.pop(imgtype))); id.ID() == 0 {
+ m := message.Message{ctxext.FakeSenderForwardNode(ctx, *pool.pop(imgtype))}
98
+ if id := ctx.Send(m).ID(); id == 0 {
99
ctx.SendChain(message.Text("ERROR: 可能被风控了"))
100
101
})
0 commit comments