This commit is contained in:
shoopea 2019-06-10 17:20:20 +08:00
parent 33b17a705c
commit f651f14620

View File

@ -267,13 +267,13 @@ func TGCmdWorker(id int, b *tb.Bot, cmds <-chan TGCommand) {
ch := tb.Chat{ ch := tb.Chat{
ID: c.ToChatID64, ID: c.ToChatID64,
} }
_, err := b.Send(&ch, c.Text, opt) _, err := b.Send(&ch, c.Text, &opt)
logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : SendMsg Chat") logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : SendMsg Chat")
} else if c.ToUserID64 != 0 { } else if c.ToUserID64 != 0 {
u := tb.User{ u := tb.User{
ID: int(c.ToUserID64), ID: int(c.ToUserID64),
} }
_, err := b.Send(&u, c.Text, opt) _, err := b.Send(&u, c.Text, &opt)
logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : SendMsg User") logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : SendMsg User")
} }
case commandReplyMsg: case commandReplyMsg:
@ -284,7 +284,7 @@ func TGCmdWorker(id int, b *tb.Bot, cmds <-chan TGCommand) {
ID: int(c.FromMsgID64), ID: int(c.FromMsgID64),
Chat: &ch, Chat: &ch,
} }
_, err := b.Reply(&m, c.Text, opt) _, err := b.Reply(&m, c.Text, &opt)
logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : ReplyMsg") logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : ReplyMsg")
case commandSendDocument: case commandSendDocument:
if c.ToChatID64 != 0 { if c.ToChatID64 != 0 {