slight code improvments, better language
parent
7473250643
commit
2024a55b87
18
updates.go
18
updates.go
|
@ -13,19 +13,21 @@ func (bot *BotAPI) UpdatesChan(config UpdateConfig) (chan Update, error) {
|
||||||
for {
|
for {
|
||||||
updates, err := bot.GetUpdates(config)
|
updates, err := bot.GetUpdates(config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if bot.Debug == true {
|
if bot.Debug {
|
||||||
panic(err)
|
panic(err)
|
||||||
} else {
|
} else {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
log.Println("Fail to GetUpdates,Retry in 3 Seconds...")
|
log.Println("Failed to get updates, retrying in 3 seconds...")
|
||||||
time.Sleep(time.Second * 3)
|
time.Sleep(time.Second * 3)
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
for _, update := range updates {
|
continue
|
||||||
if update.UpdateID >= config.Offset {
|
}
|
||||||
config.Offset = update.UpdateID + 1
|
|
||||||
bot.Updates <- update
|
for _, update := range updates {
|
||||||
}
|
if update.UpdateID >= config.Offset {
|
||||||
|
config.Offset = update.UpdateID + 1
|
||||||
|
bot.Updates <- update
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue