From 4c3cba20bdd7ea0fec5d0c0360b980b8189bdba5 Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 1 Oct 2025 15:46:48 +0200 Subject: [PATCH] fix issue with inMemory parameter not being used --- LeStorage/SyncedCollection.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }