Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ async def _post_content(
) -> Tuple[int, object]:
headers_dict = {
"Content-type": "application/json; charset=utf-8",
"x-ms-conversation-id": activity.conversation.id,
}
if token:
headers_dict.update(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,7 @@ async def reply_to_activity(
header_parameters = {}
header_parameters["Accept"] = "application/json"
header_parameters["Content-Type"] = "application/json; charset=utf-8"
header_parameters["x-ms-conversation-id"] = conversation_id
if custom_headers:
header_parameters.update(custom_headers)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,7 @@ def reply_to_activity(
header_parameters = {}
header_parameters["Accept"] = "application/json"
header_parameters["Content-Type"] = "application/json; charset=utf-8"
header_parameters["x-ms-conversation-id"] = conversation_id
if custom_headers:
header_parameters.update(custom_headers)

Expand Down