1
0
Fork 0

Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
Jan Steemann 2013-06-27 14:16:23 +02:00
commit 1e88b00e0c
1 changed files with 4 additions and 2 deletions

View File

@ -369,8 +369,10 @@ function EdgeShaper(parent, flags, idfunc) {
};
self.removeCursorFollowingEdge = function() {
followEdge.remove();
followEdge = {};
if (followEdge.remove) {
followEdge.remove();
followEdge = {};
}
};
}