When calling some mutator methods on nested arrays (like collection.id.nested.array.0), the array is emptied.
After some debugging, I found the problem to be in /lib/index.js, line 326:
var arr = found && found[relPath];
The stored array is retreived, but not found: found['collection.id.nested.array'] returns null.
When calling some mutator methods on nested arrays (like collection.id.nested.array.0), the array is emptied.
After some debugging, I found the problem to be in /lib/index.js, line 326:
var arr = found && found[relPath];
The stored array is retreived, but not found: found['collection.id.nested.array'] returns null.