diff --git a/LeStorage/SyncedCollection.swift b/LeStorage/SyncedCollection.swift index a7e8872..ba317d1 100644 --- a/LeStorage/SyncedCollection.swift +++ b/LeStorage/SyncedCollection.swift @@ -22,7 +22,7 @@ public class SyncedCollection: SomeSyncedCollection, Collect init(store: Store, indexed: Bool = false, inMemory: Bool = false, limit: Int? = nil, synchronousLoading: Bool = false, noLoad: Bool = false) { self.store = store - self.collection = StoredCollection(store: store, indexed: indexed, limit: limit, synchronousLoading: synchronousLoading, noLoad: noLoad) + self.collection = StoredCollection(store: store, indexed: indexed, inMemory: inMemory, limit: limit, synchronousLoading: synchronousLoading, noLoad: noLoad) }