Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
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
4 changes: 3 additions & 1 deletion samples/45.state-management/bots/state_management_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ async def on_message_activity(self, turn_context: TurnContext):
user_profile.name = turn_context.activity.text

# Acknowledge that we got their name.
await turn_context.send_activity(f"Thanks { user_profile.name }.")
await turn_context.send_activity(
f"Thanks { user_profile.name }. To see conversation data, type anything."
)

# Reset the flag to allow the bot to go though the cycle again.
conversation_data.prompted_for_user_name = False
Expand Down