From daf2c32722503c36b7087081e62c47716aec54bf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 13 Feb 2010 22:18:46 +0000 Subject: Fix node creation via HTTP (port parsing from string). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2443 a436a847-0d15-0410-975c-d299462d15a1 --- src/serialisation/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/serialisation') diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp index 395014a6..d667723e 100644 --- a/src/serialisation/Parser.cpp +++ b/src/serialisation/Parser.cpp @@ -300,7 +300,7 @@ Parser::parse( } else if (rdf_class == node_class) { ret = parse_node(world, target, model, subject, path, data); } else if (rdf_class == in_port_class || rdf_class == out_port_class) { - parse_properties(world, target, model, subject, string("path:") + path, data); + parse_properties(world, target, model, subject, path, data); } if (!ret) { -- cgit v1.2.1