Skip to content

Commit

Permalink
Parity in CloudAdapterBase.update_activity to use correct activity id (
Browse files Browse the repository at this point in the history
…#2120)

Co-authored-by: Tracy Boehrer <[email protected]>
  • Loading branch information
tracyboehrer and Tracy Boehrer authored May 30, 2024
1 parent b33dc49 commit bc3b6f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async def update_activity(self, context: TurnContext, activity: Activity):
raise Error("Unable to extract ConnectorClient from turn context.")

response = await connector_client.conversations.update_activity(
activity.conversation.id, activity.reply_to_id, activity
activity.conversation.id, activity.id, activity
)

response_id = response.id if response and response.id else None
Expand Down

0 comments on commit bc3b6f4

Please sign in to comment.