fix(bilibili): parse config

This commit is contained in:
源文雨 2024-05-05 01:09:30 +09:00
parent 3225a2d6c7
commit 1a20ecb634

View File

@ -118,12 +118,12 @@ func handleVideo(ctx *zero.Ctx) {
} }
c, ok := ctx.State["manager"].(*ctrl.Control[*zero.Ctx]) c, ok := ctx.State["manager"].(*ctrl.Control[*zero.Ctx])
if ok && c.GetData(ctx.Event.GroupID)&enableHex == enableHex { if ok && c.GetData(ctx.Event.GroupID)&enableHex == enableHex {
summaryMsg, err := getVideoSummary(card) summaryMsg, err := getVideoSummary(cfg, card)
if err != nil { if err != nil {
msg = append(msg, message.Text("ERROR: ", err)) msg = append(msg, message.Text("ERROR: ", err))
} else { } else {
msg = append(msg, summaryMsg...) msg = append(msg, summaryMsg...)
} }
} }
ctx.SendChain(msg...) ctx.SendChain(msg...)
} }