You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before objects are sent over from the device, they are converted using JSON.stringify function. Because it does not support stringifying objects with cyclic references, it doesn't work here too. The current behavior is that it throws an exception and the objects are not sent over.
Then consider a scenario, when the object is first created (with null assigned to prop). Then the property can be assigned so that the object points to itself.
Before objects are sent over from the device, they are converted using
JSON.stringify
function. Because it does not support stringifying objects with cyclic references, it doesn't work here too. The current behavior is that it throws an exception and the objects are not sent over.To reproduce this, create a schema:
Then consider a scenario, when the object is first created (with
null
assigned to prop). Then the property can be assigned so that the object points to itself.This would be fixed after solving #85.
The text was updated successfully, but these errors were encountered: