Skip to content
Merged
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 @@ -903,6 +903,7 @@ def _remove_mentions(self, context: TurnContext):
if (
self.options.remove_recipient_mention
and context.activity.type == ActivityTypes.message
and context.activity.text is not None
):
context.activity.text = context.remove_recipient_mention(context.activity)
Comment thread
rodrigobr-msft marked this conversation as resolved.

Expand Down
Loading