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 8579cdf commit 9369469Copy full SHA for 9369469
modules/flow/actions/loop_if_action.cpp
@@ -38,8 +38,9 @@ LoopIfAction::~LoopIfAction() {
38
39
void LoopIfAction::toJson(Json &js) const {
40
AssembleAction::toJson(js);
41
- if_action_->toJson(js["0.if"]);
42
- exec_action_->toJson(js["1.exec"]);
+ auto &js_children = js["children"];
+ if_action_->toJson(js_children["0.if"]);
43
+ exec_action_->toJson(js_children["1.exec"]);
44
}
45
46
bool LoopIfAction::setChildAs(Action *child, const std::string &role) {
version.mk
@@ -21,4 +21,4 @@
21
# TBOX版本号
22
TBOX_VERSION_MAJOR := 1
23
TBOX_VERSION_MINOR := 10
24
-TBOX_VERSION_REVISION := 18
+TBOX_VERSION_REVISION := 19
0 commit comments