Astrea

Results 11 comments of Astrea

Hey! This is a common issue with blocking code, which seems to fit in with what you just described. Blocking code, like really long synchronous tasks (IE the one you...

Again, the issue is likely because your code is blocking - `ctx.defer` can't help out with that. For further help, please join the interactions.py Discord server and use the help...

Reopening. Seems like this is an issue with autodefer not working as expected, though, as it seems to fail to defer at times.

Perhaps they mean the default role colors?

I'd say while #909 mostly fixes it, it may still be useful having something like this for messages, as they can grow more or less unbounded in most servers since...

Found a little oversight - `min/max_length` wasn't being respected. That's been fixed with the latest two commits.

This happens because `BaseContext` passes along `**ctx.kwargs`, which for modals is basically an alias to `ctx.responses`, to the raw callback itself. Unfortunately, it's not possible to fix this without a...

I think I might have found a way of fixing this without any breaking changes by detecting how many arguments the callback has and adjusting behavior from there. If it...

Thanks to @Wolfhound905, I was able to test it and fix a few bugs. This should be ready for review.