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 2d8ec89 commit a1ae872Copy full SHA for a1ae872
packages/firestore/src/core/component_provider.ts
@@ -164,12 +164,7 @@ export class IndexedDbOfflineComponentProvider extends MemoryOfflineComponentPro
164
gcScheduler!: GarbageCollectionScheduler | null;
165
166
async initialize(cfg: ComponentConfiguration): Promise<void> {
167
- this.sharedClientState = this.createSharedClientState(cfg);
168
- this.persistence = this.createPersistence(cfg);
169
- await this.persistence.start();
170
- this.gcScheduler = this.createGarbageCollectionScheduler(cfg);
171
- this.localStore = this.createLocalStore(cfg);
172
-
+ await super.initialize(cfg);
173
await synchronizeLastDocumentChangeReadTime(this.localStore);
174
}
175
0 commit comments