diff options
author | David Robillard <d@drobilla.net> | 2010-02-13 22:18:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-02-13 22:18:46 +0000 |
commit | daf2c32722503c36b7087081e62c47716aec54bf (patch) | |
tree | 623c0b1c29c38c1169df9ff8701fa42f02c1c133 /src/serialisation | |
parent | ad07c414d557629251b2f4ea4078c22f241cc865 (diff) | |
download | ingen-daf2c32722503c36b7087081e62c47716aec54bf.tar.gz ingen-daf2c32722503c36b7087081e62c47716aec54bf.tar.bz2 ingen-daf2c32722503c36b7087081e62c47716aec54bf.zip |
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
Diffstat (limited to 'src/serialisation')
-rw-r--r-- | src/serialisation/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |