mirror of https://github.com/Icinga/icinga2.git
Fix incorrect debug hints for nested dictionary expressions
fixes #12571
This commit is contained in:
parent
32e6da1c60
commit
489269e2fa
|
@ -485,7 +485,7 @@ ExpressionResult DictExpression::DoEvaluate(ScriptFrame& frame, DebugHint *dhint
|
|||
|
||||
try {
|
||||
for (Expression *aexpr : m_Expressions) {
|
||||
ExpressionResult element = aexpr->Evaluate(frame, dhint);
|
||||
ExpressionResult element = aexpr->Evaluate(frame, m_Inline ? dhint : NULL);
|
||||
CHECK_RESULT(element);
|
||||
result = element.GetValue();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue