There was an error while loading. Please reload this page.
1 parent 503febe commit 4c1ed4bCopy full SHA for 4c1ed4b
1 file changed
src/IndexedDbProvider.ts
@@ -825,7 +825,7 @@ export class IndexedDbTransaction implements DbTransaction {
825
errorDetail +
826
", History: " +
827
history.join(",")
828
- )
+ )
829
);
830
};
831
@@ -878,7 +878,9 @@ export class IndexedDbTransaction implements DbTransaction {
878
const indexStoreName = storeSchema.name + "_" + indexSchema.name;
879
const indexStore = this._indexStoreMap.get(indexStoreName);
880
if (!indexStore) {
881
- throw new Error("Index store not found in transaction: " + indexStoreName);
+ throw new Error(
882
+ "Index store not found in transaction: " + indexStoreName
883
+ );
884
}
885
indexStores.push(indexStore);
886
0 commit comments