aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/Local/FSTLevelDB.mm
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/Source/Local/FSTLevelDB.mm')
-rw-r--r--Firestore/Source/Local/FSTLevelDB.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Firestore/Source/Local/FSTLevelDB.mm b/Firestore/Source/Local/FSTLevelDB.mm
index 6efbff1..2edccb4 100644
--- a/Firestore/Source/Local/FSTLevelDB.mm
+++ b/Firestore/Source/Local/FSTLevelDB.mm
@@ -211,7 +211,7 @@ using leveldb::WriteOptions;
#pragma mark - Persistence Factory methods
- (id<FSTMutationQueue>)mutationQueueForUser:(const User &)user {
- return [FSTLevelDBMutationQueue mutationQueueWithUser:user db:_ptr serializer:self.serializer];
+ return [FSTLevelDBMutationQueue mutationQueueWithUser:user db:self serializer:self.serializer];
}
- (id<FSTQueryCache>)queryCache {
@@ -219,7 +219,7 @@ using leveldb::WriteOptions;
}
- (id<FSTRemoteDocumentCache>)remoteDocumentCache {
- return [[FSTLevelDBRemoteDocumentCache alloc] initWithDB:_ptr serializer:self.serializer];
+ return [[FSTLevelDBRemoteDocumentCache alloc] initWithDB:self serializer:self.serializer];
}
- (FSTWriteGroup *)startGroupWithAction:(NSString *)action {