diff options
Diffstat (limited to 'raul/AtomRDF.hpp')
-rw-r--r-- | raul/AtomRDF.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/AtomRDF.hpp b/raul/AtomRDF.hpp index 496fcef..2d0ffae 100644 --- a/raul/AtomRDF.hpp +++ b/raul/AtomRDF.hpp @@ -93,7 +93,7 @@ atom_to_node(Redland::World& world, const Atom& atom) break; case Atom::URI: str = atom.get_uri(); - node = librdf_new_node_from_uri_string(world.world(), CUC(str.c_str())); + node = librdf_new_node_from_uri_string(world.world(), CUC(world.expand_uri(str).c_str())); break; case Atom::STRING: str = atom.get_string(); |