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 322e27d commit 1d5a4a6Copy full SHA for 1d5a4a6
packages/firestore/exp/src/api/database.ts
@@ -332,8 +332,10 @@ export function loadBundle(
332
const resultTask = new LoadBundleTask();
333
// eslint-disable-next-line @typescript-eslint/no-floating-promises
334
getSyncEngine(firestoreImpl).then(async syncEngine => {
335
+ const databaseId = (await firestoreImpl._getConfiguration()).databaseInfo
336
+ .databaseId;
337
enqueueLoadBundle(
- (await firestoreImpl._getConfiguration()).databaseInfo.databaseId,
338
+ databaseId,
339
firestoreImpl._queue,
340
syncEngine,
341
bundleData,
0 commit comments