Recover from http error with telegram server and carry on fetching updates
This commit is contained in:
parent
790f988148
commit
6e2a728e76
@ -1,5 +1,6 @@
|
|||||||
export default function poll(bot) {
|
export default function poll(bot) {
|
||||||
return bot.api.getUpdates(bot.update).then(response => {
|
return bot.api.getUpdates(bot.update)
|
||||||
|
.then(response => {
|
||||||
if (!response.result.length) {
|
if (!response.result.length) {
|
||||||
return poll(bot);
|
return poll(bot);
|
||||||
}
|
}
|
||||||
@ -9,5 +10,8 @@ export default function poll(bot) {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return poll(bot);
|
return poll(bot);
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
return poll(bot);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user