Skip to content
Snippets Groups Projects

Fixes #60 with unbinds

Merged Nicolas Pope requested to merge bug/60/unbind into master
10 files
+ 38
8
Compare changes
  • Side-by-side
  • Inline
Files
10
@@ -119,7 +119,6 @@ T *ftl::config::create(ftl::Configurable *parent, const std::string &name, ARGS
if (entity.is_object()) {
if (!entity["$id"].is_string()) {
// TODO(Nick) Check for # in URI
std::string id_str = *parent->get<std::string>("$id");
if (id_str.find('#') != std::string::npos) {
entity["$id"] = id_str + std::string("/") + name;
Loading