Skip to content

Commit

Permalink
Fixed ExpectReplies response
Browse files Browse the repository at this point in the history
  • Loading branch information
Tracy Boehrer committed Sep 10, 2024
1 parent e493609 commit 639e12a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ def _process_turn_results(self, context: TurnContext) -> InvokeResponse:
if context.activity.delivery_mode == DeliveryModes.expect_replies:
return InvokeResponse(
status=HTTPStatus.OK,
body=ExpectedReplies(activities=context.buffered_reply_activities),
body=ExpectedReplies(activities=context.buffered_reply_activities).serialize(),
)

# Handle Invoke scenarios where the bot will return a specific body and return code.
Expand Down

0 comments on commit 639e12a

Please sign in to comment.