don't panic for failed updates, even in debug (fixes #14)

pull/16/head^2
Syfaro 10 years ago
parent adc490e379
commit d06eead68d
  1. 4
      updates.go

@ -13,13 +13,9 @@ func (bot *BotAPI) UpdatesChan(config UpdateConfig) error {
for {
updates, err := bot.GetUpdates(config)
if err != nil {
if bot.Debug {
panic(err)
} else {
log.Println(err)
log.Println("Failed to get updates, retrying in 3 seconds...")
time.Sleep(time.Second * 3)
}
continue
}