fix: add missing await in parse retry call

This commit is contained in:
2026-02-16 12:40:25 -06:00
parent 79fe51392d
commit 382e62cee7

View File

@@ -139,7 +139,7 @@ async def parse(user_input, interaction_type, retry_count=0, errors=None, histor
if validator:
validation_errors = validator(parsed)
if validation_errors:
return parse(
return await parse(
user_input,
interaction_type,
retry_count + 1,