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
It appears that the .NET SDK is receiving a change notification for a Results instance holding a backlinks view where the inserted index set contains the index 1, but the size of the collection is 1, which means the index is invalid.
For some context, the backlinks collection is constructed like:
Upon receipt of the notification, we attempt to get the items which have been newly inserted, so we get an exception attempting to read an index larger or equal to the size of the `Results.
The text was updated successfully, but these errors were encountered:
I don't know - it's a year-old issue that we didn't have an exact repro case for, so no way to verify if it's still a problem or not. Let's close and see if someone hits it again.
This is a Core issue based on the info I have from realm/realm-dotnet#3333.
It appears that the .NET SDK is receiving a change notification for a
Results
instance holding a backlinks view where the inserted index set contains the index 1, but the size of the collection is 1, which means the index is invalid.For some context, the backlinks collection is constructed like:
And we're subscribing for notifications like:
results->add_notification_callback(callback, std::make_optional(KeyPathArray()));
Upon receipt of the notification, we attempt to get the items which have been newly inserted, so we get an exception attempting to read an index larger or equal to the size of the `Results.
The text was updated successfully, but these errors were encountered: