question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

example:

authScene.on('message', async (ctx) => {
   main.bot.telegram.sendChatAction(ctx.from.id, 'typing');
   await user.passingAuth();
}

passingAuth() - wait for entering new data(entering captcha from user)

but pooling drops and no new messages come…

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:10 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
dotcypresscommented, Dec 7, 2017

Привет

Поллинг останавливается, потому что все сообщения обрабатываются последовательно. Самое простое что можно сделать, это не ждать выполнение user.passingAuth(), например:

authScene.on('message', async (ctx) => {
   main.bot.telegram.sendChatAction(ctx.from.id, 'typing');
   user.passingAuth().then(x => ...);
}

или так

const { fork } = require('telegraf/composer')

authScene.on('message', fork(async (ctx) => {
   main.bot.telegram.sendChatAction(ctx.from.id, 'typing');
   await user.passingAuth();
})
0reactions
bodyajoycommented, Dec 8, 2017

Спасибо большое

Read more comments on GitHub >

github_iconTop Results From Across the Web

chlorine drops for pools - Amazon.com
Amazon.com: chlorine drops for pools. ... Poolmaster 23243 1-Ounce OTO Indicator Replacement Solution for Pool Water Testing, Multi.
Read more >
HTH Drop Out Flocculant for Pools, Drops Particles Overnight ...
Contains one 1-quart bottle of HTH Drop Out Flocculant for swimming pools · Works quickly to clear dull or cloudy water · Drops...
Read more >
Coalescence and spreading of drops on liquid pools
We investigate the problem of gentle deposition of a single drop of oil on a pool of water, representative of an oil spill...
Read more >
Drop Design Spa - Pinterest
Drop Pools. Whether you are considering a hot tub or an outdoor jacuzzi, we have a pool for every taste and need. Explore...
Read more >
HTH® Pool Care Drop Out™ Flocculant
Quickly clear dull or cloudy pool water overnight! This unique formula drops dirt and fine particles to the pool floor for easy vacuuming....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found