Merge branch 'master' of https://github.com/SciSharp/BotSharp into features/add-utility-visibility

This commit is contained in:
Jicheng Lu 2025-05-28 13:29:04 -05:00
commit db542b7e90

View file

@ -419,12 +419,10 @@ public class ConversationStateService : IConversationStateService
if (AgentService.AgentParameterTypes.IsNullOrEmpty())
return true;
var agentTypes = AgentService.AgentParameterTypes
.Where(p => p.Value != null)
.SelectMany(p => p.Value)
.ToList();
if (!AgentService.AgentParameterTypes.TryGetValue(_routingContext.GetCurrentAgentId(), out var agentTypes))
return true;
if (agentTypes == null || agentTypes.Count == 0)
if (agentTypes.IsNullOrEmpty())
return true;
var found = agentTypes.FirstOrDefault(t => t.Key == name);