Allow module consumers to deal with Promise rejections themselves #38
@ -34,11 +34,11 @@ export default class Base extends EventEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let messageId;
|
let messageId;
|
||||||
return new Promise(resolve => {
|
return new Promise((resolve, reject) => {
|
||||||
bot.api[this.method](this.properties).then(response => {
|
bot.api[this.method](this.properties).then(response => {
|
||||||
messageId = response.result.message_id;
|
messageId = response.result.message_id;
|
||||||
this.emit('message:sent', response);
|
this.emit('message:sent', response);
|
||||||
});
|
}).catch(reject);
|
||||||
|
|
||||||
if (this._keyboard.one_time_keyboard) {
|
if (this._keyboard.one_time_keyboard) {
|
||||||
this._keyboard.replyMarkup = '';
|
this._keyboard.replyMarkup = '';
|
||||||
|
Loading…
Reference in New Issue
Block a user