minor change
This commit is contained in:
parent
4b53875718
commit
684805cada
|
|
@ -88,7 +88,7 @@ public class TemplateRender : ITemplateRender
|
|||
var found = agent?.Templates?.FirstOrDefault(x => x.Name.IsEqualTo(identifier));
|
||||
var key = $"{agent?.Id} | {identifier}";
|
||||
|
||||
if (found == null || context.AmbientValues.TryGetValue(key, out var visited) && (bool)visited)
|
||||
if (found == null || (context.AmbientValues.TryGetValue(key, out var visited) && (bool)visited))
|
||||
{
|
||||
writer.Write(string.Empty);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue