кнопки больше никто ничего не может сделать пока он не закончит. Также не должно быть?
function simulateTimeoutError() {
const timeoutMillis = 10000; //
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve(new Error('Promise timed out after ' + timeoutMillis + ' milliseconds'));
}, timeoutMillis);
});
}
bot.action('test', async (ctx) => {
try {
await simulateTimeoutError()
ctx.reply('тут');
} catch (error) {
ctx.reply('тут error');
}
});
сделой
Обсуждают сегодня