fix: add missing await in parse retry call
This commit is contained in:
@@ -139,7 +139,7 @@ async def parse(user_input, interaction_type, retry_count=0, errors=None, histor
|
|||||||
if validator:
|
if validator:
|
||||||
validation_errors = validator(parsed)
|
validation_errors = validator(parsed)
|
||||||
if validation_errors:
|
if validation_errors:
|
||||||
return parse(
|
return await parse(
|
||||||
user_input,
|
user_input,
|
||||||
interaction_type,
|
interaction_type,
|
||||||
retry_count + 1,
|
retry_count + 1,
|
||||||
|
|||||||
Reference in New Issue
Block a user