8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cfe61c commit 867eab7Copy full SHA for 867eab7
libraries/botbuilder-core/botbuilder/core/bot_framework_adapter.py
@@ -461,7 +461,9 @@ async def process_activity_with_identity(
461
# should deserialize accordingly:
462
# activities = [Activity().deserialize(activity) for activity in response.body]
463
if context.activity.delivery_mode == DeliveryModes.buffered_replies:
464
- serialized_activities = [activity.serialize() for activity in context.buffered_replies]
+ serialized_activities = [
465
+ activity.serialize() for activity in context.buffered_replies
466
+ ]
467
return InvokeResponse(status=200, body=serialized_activities)
468
469
return None
0 commit comments