microsoft / botbuilder-python

The Microsoft Bot Framework provides what you need to build and connect intelligent bots that interact naturally wherever your users are talking, from text/sms to Skype, Slack, Office 365 mail and other popular services.
http://botframework.com
MIT License
672 stars 271 forks source link

CloudAdapterBase.update_activity using wrong activity id argument #2119

Closed tracyboehrer closed 1 month ago

tracyboehrer commented 1 month ago
        response = await connector_client.conversations.update_activity(
            activity.conversation.id, activity.reply_to_id, activity
        )

should be

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