-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.18.0 crashes on some devices #6257
Labels
Comments
Hi, |
Hello, |
Hello, |
This is probably the same thing as #6268, as there's only one other assertion in that function. We will hopefully have a release out fixing that early next week. |
Merged
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Before the 3.17.3 version, the function has been running normally. After the 3.18.0 was online, some devices received feedback flashback. The code has not been changed. The check found that the problem is caused by the 3.18.0 version.
Goals
Expected Results
Actual Results
Steps to Reproduce
Code Sample
Cart *cart = [Cart objectForPrimaryKey:@(shopId)];
if (!cart) {
RLMRealm *realm = [RLMRealm defaultRealm];
[realm beginWriteTransaction];
cart = [[Cart alloc] init];
cart.shop_id = shopId;
[realm addObject:cart];
[realm commitWriteTransaction];
}
return cart;
It Crashes at [realm addObject:cart]; since version 3.18.0
Version of Realm and Tooling
Realm framework version: ?
3.18.0
Realm Object Server version: ?
Xcode version: ?
10.3
iOS/OSX version: ?
Dependency manager + version: ?
The text was updated successfully, but these errors were encountered: