mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
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…
x
Reference in New Issue
Block a user