Remove a broken check for GetUpdatesChan.
parent
9105c34c59
commit
5f38203a15
5
bot.go
5
bot.go
|
@ -493,10 +493,7 @@ func (bot *BotAPI) GetUpdatesChan(config UpdateConfig) (UpdatesChannel, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, update := range updates {
|
for _, update := range updates {
|
||||||
if update.UpdateID >= config.Offset {
|
ch <- update
|
||||||
config.Offset = update.UpdateID + 1
|
|
||||||
ch <- update
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
|
@ -291,7 +291,7 @@ type (
|
||||||
MiddleNameNative string `json:"middle_name_native"`
|
MiddleNameNative string `json:"middle_name_native"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// IdDocumentData https://core.telegram.org/passport#iddocumentdata
|
// IDDocumentData https://core.telegram.org/passport#iddocumentdata
|
||||||
IDDocumentData struct {
|
IDDocumentData struct {
|
||||||
DocumentNumber string `json:"document_no"`
|
DocumentNumber string `json:"document_no"`
|
||||||
ExpiryDate string `json:"expiry_date"`
|
ExpiryDate string `json:"expiry_date"`
|
||||||
|
|
Loading…
Reference in New Issue