mirror of
https://github.com/hempyhemp/hh-auto-reply.git
synced 2026-07-24 21:04:58 +00:00
✨ feat(file): Добавлена функция skipIfQuestionnaire для пропуска анкетирования вакансии.
This commit is contained in:
@@ -5,4 +5,10 @@ import TelegramBot from 'node-telegram-bot-api'
|
||||
const token = process.env.TG_BOT_TOKEN!
|
||||
const bot = new TelegramBot(token, { polling: true })
|
||||
|
||||
bot.on('polling_error', (err: any) => {
|
||||
// EFATAL (socket hang up) — Telegram обрывает long-poll соединение, это нормально
|
||||
if (err?.code === 'EFATAL') return
|
||||
console.error('[polling_error]', err?.code, err?.message)
|
||||
})
|
||||
|
||||
export default bot
|
||||
|
||||
Reference in New Issue
Block a user