mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 05:34:48 +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 {
|
try {
|
||||||
for (Expression *aexpr : m_Expressions) {
|
for (Expression *aexpr : m_Expressions) {
|
||||||
ExpressionResult element = aexpr->Evaluate(frame, dhint);
|
ExpressionResult element = aexpr->Evaluate(frame, m_Inline ? dhint : NULL);
|
||||||
CHECK_RESULT(element);
|
CHECK_RESULT(element);
|
||||||
result = element.GetValue();
|
result = element.GetValue();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user