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 @@ -100,7 +100,7 @@ async def send_activities(
)
)

response = response or ResourceResponse(activity.id or "")
response = response or ResourceResponse(id=activity.id or "")

responses.append(response)

Expand Down
2 changes: 1 addition & 1 deletion libraries/botbuilder-core/tests/simple_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async def update_activity(self, context: TurnContext, activity: Activity):
if self._call_on_update is not None:
self._call_on_update(activity)

return ResourceResponse(activity.id)
return ResourceResponse(id=activity.id)

async def process_request(self, activity, handler):
context = TurnContext(self, activity)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async def update_activity(self, context: TurnContext, activity: Activity):
if self._call_on_update is not None:
self._call_on_update(activity)

return ResourceResponse(activity.id)
return ResourceResponse(id=activity.id)

async def process_request(self, activity, handler):
context = TurnContext(self, activity)
Expand Down