diff options
Diffstat (limited to 'src/SocketReader.cpp')
-rw-r--r-- | src/SocketReader.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/SocketReader.cpp b/src/SocketReader.cpp index 85f55f08..d57cda29 100644 --- a/src/SocketReader.cpp +++ b/src/SocketReader.cpp @@ -113,9 +113,8 @@ SocketReader::run() // Lock RDF world std::lock_guard<std::mutex> lock(_world.rdf_mutex()); - // Use <ingen:/root/> as base URI so e.g. </foo/bar> will be a path - base_uri = sord_new_uri( - world->c_obj(), (const uint8_t*)"ingen:/root/"); + // Use <ingen:/> as base URI, so relative URIs are like bundle paths + base_uri = sord_new_uri(world->c_obj(), (const uint8_t*)"ingen:/"); // Make a model and reader to parse the next Turtle message _env = world->prefixes().c_obj(); |