1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-25 05:23:13 +03:00

Add missing word

This commit is contained in:
J. Ryan Stinnett
2019-03-26 11:25:59 +00:00
parent 81428f23d1
commit c1ba5de686

View File

@@ -39,8 +39,8 @@ export function exists(indexedDB, dbName) {
// The DB did not exist before, but has been created as part of this
// existence check. Delete it now to restore previous state. Delete can
// actually take a while to complete in some browsers, so don't wait for
// it. This won't block future open calls the might issue next to properly
// set up the DB.
// it. This won't block future open calls that a store might issue next to
// properly set up the DB.
indexedDB.deleteDatabase(dbName);
}
resolve(exists);