Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwlin committed Nov 18, 2023
1 parent 00b1d46 commit 0102c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/cli/Config/TasksConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bool TasksConfig::parse(const json::value& config_opt)
Task task;
task.name = el.get("name", "");
task.status = el.get("status", true);
task.param = el.get("param");
task.param = el.get("param", json::object());
task.type = el.get("type", "");
_config_tasklist.emplace_back(task);
}
Expand Down

0 comments on commit 0102c83

Please sign in to comment.