From 7fe2f0c3a3a84131c1dd56cb6f9778746a4e281f Mon Sep 17 00:00:00 2001 From: Haiping Date: Wed, 16 Apr 2025 14:26:32 -0500 Subject: [PATCH] Set _conversationId --- .../BotSharp.Core/Conversations/Services/ConversationService.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Infrastructure/BotSharp.Core/Conversations/Services/ConversationService.cs b/src/Infrastructure/BotSharp.Core/Conversations/Services/ConversationService.cs index 20e6a7fd..c8277500 100644 --- a/src/Infrastructure/BotSharp.Core/Conversations/Services/ConversationService.cs +++ b/src/Infrastructure/BotSharp.Core/Conversations/Services/ConversationService.cs @@ -202,6 +202,8 @@ public partial class ConversationService : IConversationService converation = await NewConversation(sess); } + _conversationId = converation.Id; + return converation; }