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
In the current state, creating an object with a property (_id in the error message below) of type BSON ObjectId will fail when the app is running in Chrome debugging mode, with the following error message:
ClassName._id must be of type 'objectId', got 'object' ([object Object])
The current implementation is depending on a _bson, _Decimal128 and _ObjectId constants being patched onto the Realm constructor in a couple of places:
In the current state, creating an object with a property (_id in the error message below) of type BSON ObjectId will fail when the app is running in Chrome debugging mode, with the following error message:
The current implementation is depending on a
_bson
,_Decimal128
and_ObjectId
constants being patched onto theRealm
constructor in a couple of places:When reading a property of type ObjectId, users will also experience:
This constant is never set when running in chrome debugging mode.
The text was updated successfully, but these errors were encountered: