We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b53875 commit 684805cCopy full SHA for 684805c
1 file changed
src/Infrastructure/BotSharp.Core/Templating/TemplateRender.cs
@@ -88,7 +88,7 @@ private static async ValueTask<Completion> RenderIdentifierTag(string identifier
88
var found = agent?.Templates?.FirstOrDefault(x => x.Name.IsEqualTo(identifier));
89
var key = $"{agent?.Id} | {identifier}";
90
91
- if (found == null || context.AmbientValues.TryGetValue(key, out var visited) && (bool)visited)
+ if (found == null || (context.AmbientValues.TryGetValue(key, out var visited) && (bool)visited))
92
{
93
writer.Write(string.Empty);
94
}
0 commit comments