We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5d041d commit 160ddcbCopy full SHA for 160ddcb
RxQueryKit/RxQueryKit.swift
@@ -9,7 +9,7 @@ extension QuerySet {
9
/// Performs a query for all objects matching the set predicate ordered by any set sort descriptors.
10
/// Emits a value with an array of all objects when the managed object context is changed.
11
public func objects() throws -> Observable<[ModelType]> {
12
- return context.qk_objectsDidChange().map { [unowned self] notification in
+ return context.qk_objectsDidChange().map { notification in
13
return try self.array()
14
}.startWith(try self.array())
15
}
0 commit comments