Skip to content

Commit 67e46ef

Browse files
committed
Fix getObjectStores() for schema version 19
1 parent cb53dc0 commit 67e46ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/local/indexeddb_sentinels.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ export const ALL_STORES = V12_STORES;
464464

465465
/** Returns the object stores for the provided schema. */
466466
export function getObjectStores(schemaVersion: number): string[] {
467-
if (schemaVersion === 18) {
467+
if (schemaVersion === 18 || schemaVersion === 19) {
468468
return V18_STORES;
469469
} else if (schemaVersion === 17) {
470470
return V17_STORES;

0 commit comments

Comments
 (0)