Normando Hall

Results 22 comments of Normando Hall

Redis 4.x change the behaviour and has a lot of breaking changes. See you in https://github.com/redis/node-redis/blob/master/docs/v3-to-v4.md I was fixed and adapted for 4.x: Modify the content of `lib/cache-engines/redis.js` to: ```js...

> Thanks. Please feel free to submit a PR. We'll be happy to check in. Done :+1:

> I started some work in a separate branch but it is far from finished: > > https://github.com/e-alfred/ocdownloader/tree/youtubedl-rework Very interested on this enhancement. Thanks!

Same here. I was fixed cleaning session after awaiting leave: ```js await ctx.scene.leave(); ctx.session = {}; ```

Try this. I was found that entering scenes with async, completes the update process. ```ts bot.command('/greet', async ctx => await (ctx as never as Scenes.SceneContext).scene.enter('greeter'), ); bot.command('/echo', async ctx =>...

If I understood correctly, you need a catch all like this: ```js bot.use( async (ctx) { // do something... }); ``` Take care where you use this function, at the...