update
This commit is contained in:
+4
-4
@@ -54,12 +54,12 @@ func init() {
|
||||
logs.Warn("监听telegram机器人失败:%v", err)
|
||||
return
|
||||
}
|
||||
core.Pushs["tg"] = func(i int, s string) {
|
||||
b.Send(&tb.User{ID: i}, s)
|
||||
core.Pushs["tg"] = func(i interface{}, s string) {
|
||||
b.Send(&tb.User{ID: core.Int(i)}, s)
|
||||
}
|
||||
core.GroupPushs["tg"] = func(i, j int, s string) {
|
||||
core.GroupPushs["tg"] = func(i, _ interface{}, s string) {
|
||||
paths := []string{}
|
||||
ct := &tb.Chat{ID: int64(i)}
|
||||
ct := &tb.Chat{ID: core.Int64(i)}
|
||||
for _, v := range regexp.MustCompile(`\[CQ:image,file=([^\[\]]+)\]`).FindAllStringSubmatch(s, -1) {
|
||||
paths = append(paths, core.ExecPath+"/data/images/"+v[1])
|
||||
s = strings.Replace(s, fmt.Sprintf(`[CQ:image,file=%s]`, v[1]), "", -1)
|
||||
|
||||
Reference in New Issue
Block a user