summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Serialiser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Serialiser.cpp b/src/Serialiser.cpp
index c1c1c251..bb185e9a 100644
--- a/src/Serialiser.cpp
+++ b/src/Serialiser.cpp
@@ -343,7 +343,8 @@ Serialiser::Impl::serialise_graph(SPtr<const Node> graph,
// If the graph has no doap:name (required by LV2), use the symbol
if (graph->properties().find(uris.doap_name) == graph->properties().end()) {
- const std::string sym = Glib::path_get_basename(graph_id.to_string());
+ std::string sym = Glib::path_get_basename(graph_id.to_string());
+ sym = sym.substr(0, sym.find('.'));
_model->add_statement(graph_id,
Sord::URI(world, uris.doap_name),
Sord::Literal(world, sym));