This commit is contained in:
shoopea 2019-12-29 19:05:36 +08:00
parent f547da7e3e
commit ee92709079

7
bot.go
View File

@ -101,9 +101,6 @@ func botQuery(q *tb.Query) {
func botText(m *tb.Message) {
PrintText(m)
b, _ := json.Marshal(m)
log.Printf("botText : %s\n", string(b))
if (m.Chat.ID == cfg.Bot.Depositchat || m.Chat.ID == cfg.Bot.Mainchat) && m.IsForwarded() && int64(m.OriginalSender.ID) == chtwrsbotID64 {
log.Printf("botText : forwarding message.\n")
cwm := ChatWarsMessage{
@ -116,10 +113,6 @@ func botText(m *tb.Message) {
IsForwarded: true,
}
MQCWMsgQueue <- cwm
} else {
log.Printf("botText : printing message.\n")
}
// all the text messages that weren't
// captured by existing handlers