10000
We read every piece of feedback, and take your input very seriously.
1 parent b8dd205 commit a2cccb3Copy full SHA for a2cccb3
libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/bot_framework_http_client.py
@@ -116,6 +116,7 @@ async def _post_content(
116
) -> Tuple[int, object]:
117
headers_dict = {
118
"Content-type": "application/json; charset=utf-8",
119
+ "x-ms-conversation-id": activity.conversation.id,
120
}
121
if token:
122
headers_dict.update(
libraries/botframework-connector/botframework/connector/aio/operations_async/_conversations_operations_async.py
@@ -510,6 +510,7 @@ async def reply_to_activity(
510
header_parameters = {}
511
header_parameters["Accept"] = "application/json"
512
header_parameters["Content-Type"] = "application/json; charset=utf-8"
513
+ header_parameters["x-ms-conversation-id"] = conversation_id
514
if custom_headers:
515
header_parameters.update(custom_headers)
516
libraries/botframework-connector/botframework/connector/operations/_conversations_operations.py
@@ -495,6 +495,7 @@ def reply_to_activity(
495
496
497
498
499
500
501