1
0
Fork 0

bugfix wrong variable name

This commit is contained in:
a-brandt 2012-08-30 13:33:03 +02:00
parent f8bc6c449d
commit 7a6ae34b18
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ function postVertex(req, res) {
id = json["$id"]; id = json["$id"];
} }
var v = g.addVertex(id, body); var v = g.addVertex(id, json);
if (v == undefined || v._properties == undefined) { if (v == undefined || v._properties == undefined) {
throw "could not create vertex"; throw "could not create vertex";