From a1b88ac688e5423b7fc46dc59adb0e9ae1766cf9 Mon Sep 17 00:00:00 2001 From: Haiping Chen Date: Sat, 31 Aug 2024 07:28:06 -0500 Subject: [PATCH] MessageInfo cachekey --- .../BotSharp.Abstraction/Browsing/Models/MessageInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/MessageInfo.cs b/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/MessageInfo.cs index baa404d5..afb42dac 100644 --- a/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/MessageInfo.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/MessageInfo.cs @@ -12,5 +12,5 @@ public class MessageInfo : ICacheKey public string StepId { get; set; } = Guid.NewGuid().ToString(); public string GetCacheKey() - => $"{nameof(MessageInfo)}-{ContextId}"; + => $"{nameof(MessageInfo)}"; }