summaryrefslogtreecommitdiffstats
path: root/src/engine/HTTPClientSender.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-15 23:30:14 +0000
committerDavid Robillard <d@drobilla.net>2011-02-15 23:30:14 +0000
commite58d64653df9b8520f789587b5547fb36bc0788a (patch)
treed2b83f54ddd0e85c5ba347163ffdd32e57e39fde /src/engine/HTTPClientSender.cpp
parent570f1c791858aa62afa8278f4823719aa22501c5 (diff)
downloadingen-e58d64653df9b8520f789587b5547fb36bc0788a.tar.gz
ingen-e58d64653df9b8520f789587b5547fb36bc0788a.tar.bz2
ingen-e58d64653df9b8520f789587b5547fb36bc0788a.zip
Remove fuzzy lack of distinction between URIs and CURIEs.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2954 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/HTTPClientSender.cpp')
-rw-r--r--src/engine/HTTPClientSender.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/HTTPClientSender.cpp b/src/engine/HTTPClientSender.cpp
index 4f2a8ebd..79f64cc1 100644
--- a/src/engine/HTTPClientSender.cpp
+++ b/src/engine/HTTPClientSender.cpp
@@ -63,7 +63,7 @@ HTTPClientSender::put(const URI& uri,
for (Resource::Properties::const_iterator i = properties.begin(); i != properties.end(); ++i)
model.add_statement(
Redland::Resource(*_engine.world()->rdf_world(), path),
- i->first.str(),
+ AtomRDF::atom_to_node(model, i->first.str()),
AtomRDF::atom_to_node(model, i->second));
const string str = model.serialise_to_string("turtle");