test
This commit is contained in:
parent
ae00d64a92
commit
e8edde5722
@ -255,10 +255,10 @@ func TGCmdWorker(id int, b *tb.Bot, cmds <-chan TGCommand) {
|
|||||||
_, err := b.Send(&ch, c.Text)
|
_, err := b.Send(&ch, c.Text)
|
||||||
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 {
|
||||||
ch := tb.Chat{
|
u := tb.User{
|
||||||
ID: c.ToUserID64,
|
ID: int(c.ToUserID64),
|
||||||
}
|
}
|
||||||
_, err := b.Send(&ch, c.Text)
|
_, err := b.Send(&u, c.Text)
|
||||||
logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : SendMsg User")
|
logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : SendMsg User")
|
||||||
}
|
}
|
||||||
case commandReplyMsg:
|
case commandReplyMsg:
|
||||||
@ -282,7 +282,7 @@ func TGCmdWorker(id int, b *tb.Bot, cmds <-chan TGCommand) {
|
|||||||
logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : SendDocument Chat")
|
logOnError(err, "TGCmdWorker["+strconv.Itoa(id)+"] : SendDocument Chat")
|
||||||
} else if c.ToUserID64 != 0 {
|
} else if c.ToUserID64 != 0 {
|
||||||
u := tb.User{
|
u := tb.User{
|
||||||
ID: c.ToUserID64,
|
ID: int(c.ToUserID64),
|
||||||
}
|
}
|
||||||
d := c.Document
|
d := c.Document
|
||||||
_, err := b.Send(&u, &d)
|
_, err := b.Send(&u, &d)
|
||||||
|
Loading…
Reference in New Issue
Block a user