Merge pull request #1 from sirlori/master

Fix on the updaterequest
bot-api-6.1
Syfaro 2015-06-26 21:43:52 -05:00
commit 0105ee9097
1 changed files with 2 additions and 3 deletions

View File

@ -12,11 +12,10 @@ func (bot *BotAPI) UpdatesChan(config UpdateConfig) (chan Update, error) {
}
for _, update := range updates {
if update.UpdateID > config.Offset {
if update.UpdateID >= config.Offset {
config.Offset = update.UpdateID + 1
bot.Updates <- update
}
bot.Updates <- update
}
}
}()