Skip to content

Commit

Permalink
Solve PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaafanador3 committed May 22, 2024
1 parent 7d5023f commit 3683365
Show file tree
Hide file tree
Showing 12 changed files with 1,993 additions and 157 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ store. Xcode 15.1 is now the minimum supported version.
* The `transferredBytes` and `transferrableBytes` fields on `Progress` have been deprecated
in favor of `progressEstimate` which is a value between 0.0 and 1.0 indicating the estimated
progress toward the upload/download transfer. ([#8476](https://github.com/realm/realm-swift/issues/8476))
UUID/ObjectId types. ([.Net * #3566](https://github.com/realm/realm-dotnet/issues/3566))
* Added `SyncConfiguration.initialSubscriptions` which describes the initial subscription configuration that was passed when constructing the `SyncConfiguration`. ([#8548](https://github.com/realm/realm-swift/issues/8548))

### Fixed
* `-[RLMUser allSessions]` did not include sessions which were currently
Expand Down
4 changes: 2 additions & 2 deletions Realm/RLMAccessor.mm
Original file line number Diff line number Diff line change
Expand Up @@ -777,13 +777,13 @@ id RLMDynamicGetByName(__unsafe_unretained RLMObjectBase *const obj,
}

RLMArray *RLMGetSwiftPropertyArray(__unsafe_unretained RLMObjectBase *const obj, uint16_t key) {
return getCollection(obj, key);
return (RLMArray *)getCollection(obj, key);
}
RLMSet *RLMGetSwiftPropertySet(__unsafe_unretained RLMObjectBase *const obj, uint16_t key) {
return getCollection(obj, key);
}
RLMDictionary *RLMGetSwiftPropertyMap(__unsafe_unretained RLMObjectBase *const obj, uint16_t key) {
return getCollection(obj, key);
return (RLMDictionary *)getCollection(obj, key);
}

void RLMSetSwiftPropertyNil(__unsafe_unretained RLMObjectBase *const obj, uint16_t key) {
Expand Down
Loading

0 comments on commit 3683365

Please sign in to comment.