@@ -12,7 +12,6 @@ const {
12
12
const { getQuestion } = require ( './src/services/questionsService' )
13
13
14
14
const bot = new Telegraf ( process . env . BOT_TOKEN )
15
- Database . client . connect ( )
16
15
17
16
const welcome = ( name ) =>
18
17
`Hi ${ name } 👋
@@ -84,7 +83,7 @@ bot.command('all', async ctx => {
84
83
ctx . replyWithHTML ( ctx . session . userQuestionsHTML [ 0 ] , {
85
84
disable_web_page_preview : true ,
86
85
reply_markup : ctx . session . userQuestionsHTML [ 1 ]
87
- ? Markup . inlineKeyboard ( [ Markup . button . callback ( '>>' , 'next_page' ) ] ) . reply_markup : [ ]
86
+ ? Markup . inlineKeyboard ( [ Markup . button . callback ( '>>' , 'next_page' ) ] ) . reply_markup : { }
88
87
} )
89
88
} else {
90
89
ctx . reply ( `You haven't got any problem in your bucket. Try adding one?` )
@@ -250,13 +249,17 @@ bot.action('rejected', async ctx => {
250
249
251
250
// Run with webhook
252
251
// When running locally, get domain from command 'npx lt --port xxxx'
253
- bot . launch ( {
254
- webhook : {
255
- domain : process . env . DOMAIN ,
256
- hookPath : `/${ process . env . WEBHOOK_PATH } ` ,
257
- port : process . env . PORT
258
- }
259
- } ) . catch ( r => 'Bot failed to lunch\n' + r )
252
+ Database . client . connect ( )
253
+ . then (
254
+ bot . launch ( {
255
+ webhook : {
256
+ domain : process . env . DOMAIN ,
257
+ hookPath : `/${ process . env . WEBHOOK_PATH } ` ,
258
+ port : process . env . PORT
259
+ }
260
+ } ) . catch ( r => 'Bot failed to lunch\n' + r )
261
+ )
262
+ . catch ( e => console . log ( 'Failed to connect to Database\n' + e ) )
260
263
261
264
// Enable graceful stop
262
265
process . once ( 'SIGINT' , ( ) => {
0 commit comments