Skip to content

Commit 37e5e2b

Browse files
committed
Fix command and database connection
1 parent 931f873 commit 37e5e2b

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

index.js

+12-9
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const {
1212
const { getQuestion } = require('./src/services/questionsService')
1313

1414
const bot = new Telegraf(process.env.BOT_TOKEN)
15-
Database.client.connect()
1615

1716
const welcome = (name) =>
1817
`Hi ${name} 👋
@@ -84,7 +83,7 @@ bot.command('all', async ctx => {
8483
ctx.replyWithHTML(ctx.session.userQuestionsHTML[0], {
8584
disable_web_page_preview: true,
8685
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 : {}
8887
})
8988
} else {
9089
ctx.reply(`You haven't got any problem in your bucket. Try adding one?`)
@@ -250,13 +249,17 @@ bot.action('rejected', async ctx => {
250249

251250
// Run with webhook
252251
// 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))
260263

261264
// Enable graceful stop
262265
process.once('SIGINT', () => {

0 commit comments

Comments
 (0)