Emit bot errors inside inner catch promise chain handlers
This commit is contained in:
parent
6e2a728e76
commit
a404e2ee82
@ -11,7 +11,8 @@ export default function poll(bot) {
|
|||||||
}
|
}
|
||||||
return poll(bot);
|
return poll(bot);
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(e => {
|
||||||
|
bot.emit('error', e);
|
||||||
return poll(bot);
|
return poll(bot);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
27
src/index.js
27
src/index.js
@ -75,17 +75,22 @@ export default class Bot extends EventEmitter {
|
|||||||
if (hook) {
|
if (hook) {
|
||||||
return webhook(hook, this);
|
return webhook(hook, this);
|
||||||
}
|
}
|
||||||
return this.api.getMe().then(response => {
|
return this.api.getMe()
|
||||||
this.info = response.result;
|
.then(response => {
|
||||||
|
this.info = response.result;
|
||||||
|
|
||||||
this.on('update', this._update);
|
this.on('update', this._update);
|
||||||
|
|
||||||
if (hook) {
|
if (hook) {
|
||||||
return webhook(hook, this);
|
return webhook(hook, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
return poll(this);
|
return poll(this);
|
||||||
});
|
})
|
||||||
|
.catch(e => {
|
||||||
|
this.emit('error', e);
|
||||||
|
throw e;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -138,7 +143,11 @@ export default class Bot extends EventEmitter {
|
|||||||
* @return {unknown} returns the result of calling message's send method
|
* @return {unknown} returns the result of calling message's send method
|
||||||
*/
|
*/
|
||||||
send(message) {
|
send(message) {
|
||||||
return message.send(this);
|
return message.send(this)
|
||||||
|
.catch(e => {
|
||||||
|
this.emit('error', e);
|
||||||
|
throw e;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user