test
This commit is contained in:
parent
95bf83c97c
commit
423eb903d5
13
bot.go
13
bot.go
@ -266,13 +266,24 @@ func botMsgLoad(m *tb.Message) {
|
||||
}
|
||||
log.Printf("Message Load\n")
|
||||
if m.ReplyTo != nil {
|
||||
r := m.ReplyTo
|
||||
if r.Document != nil {
|
||||
c := TGCommand{
|
||||
Type: commandReplyMsg,
|
||||
Text: `Message found.`,
|
||||
Text: `Document found.`,
|
||||
FromMsgID64: int64(m.ID),
|
||||
FromChatID64: m.Chat.ID,
|
||||
}
|
||||
TGCmdQueue <- c
|
||||
} else {
|
||||
c := TGCommand{
|
||||
Type: commandReplyMsg,
|
||||
Text: `Message is not a document.`,
|
||||
FromMsgID64: int64(m.ID),
|
||||
FromChatID64: m.Chat.ID,
|
||||
}
|
||||
TGCmdQueue <- c
|
||||
}
|
||||
} else {
|
||||
c := TGCommand{
|
||||
Type: commandReplyMsg,
|
||||
|
Loading…
Reference in New Issue
Block a user