diff options
Diffstat (limited to 'lib/RemoteControl.cpp')
| -rw-r--r-- | lib/RemoteControl.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/RemoteControl.cpp b/lib/RemoteControl.cpp index dca3373..70671e7 100644 --- a/lib/RemoteControl.cpp +++ b/lib/RemoteControl.cpp @@ -109,8 +109,7 @@ std::list< std::vector<std::string> > RemoteControllers::get_param_list_values(c std::string RemoteControllers::get_showjson() { json::map_t root; for (auto &controllable : rcs.controllables) { - root[controllable->get_rc_name()].v = - std::make_shared<json::map_t>(controllable->get_all_values()); + root[controllable->get_rc_name()] = controllable->get_all_values(); } return json::map_to_json(root); |
