summaryrefslogtreecommitdiff
path: root/NT/src/graph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'NT/src/graph.cpp')
-rw-r--r--NT/src/graph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/NT/src/graph.cpp b/NT/src/graph.cpp
index f774528..ef638cc 100644
--- a/NT/src/graph.cpp
+++ b/NT/src/graph.cpp
@@ -50,7 +50,7 @@ bool Graph::parse_json(string &data,string &media_path){
clear();
Node_factory factory;
check_audio(root["audio"].asString(),media_path);
- init(root["id"].asString(),root["description"].asString());
+ init(root["id"].asString());
Json::Value jnodes = root["nodes"];
for ( uint32_t i = 0; i < jnodes.size(); ++i ) {
string node_id=jnodes[i]["id"].asString();