aioimaplib icon indicating copy to clipboard operation
aioimaplib copied to clipboard

Fix maximum recursion inside `_handle_responses`

Open AlecHaring opened this issue 10 months ago • 0 comments

If a response is too long (has too many lines), RecursionError: maximum recursion depth exceeded is raised.

To fix this, I replaced the recursion inside _handle_responses with a loop.

AlecHaring avatar Apr 12 '24 02:04 AlecHaring