Merge pull request #2836 from jryans/storage-firefox-errors
Catch errors when checking IndexedDB
This commit is contained in:
commit
b4995f3698
1 changed files with 20 additions and 8 deletions
|
@ -61,10 +61,16 @@ export async function checkConsistency() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (indexedDB && localStorage) {
|
if (indexedDB && localStorage) {
|
||||||
|
try {
|
||||||
const dataInSyncStore = await Matrix.IndexedDBStore.exists(
|
const dataInSyncStore = await Matrix.IndexedDBStore.exists(
|
||||||
indexedDB, SYNC_STORE_NAME,
|
indexedDB, SYNC_STORE_NAME,
|
||||||
);
|
);
|
||||||
log(`Sync store contains data? ${dataInSyncStore}`);
|
log(`Sync store contains data? ${dataInSyncStore}`);
|
||||||
|
} catch (e) {
|
||||||
|
healthy = false;
|
||||||
|
error("Sync store inaccessible", e);
|
||||||
|
track("Sync store inaccessible");
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
healthy = false;
|
healthy = false;
|
||||||
error("Sync store cannot be used on this browser");
|
error("Sync store cannot be used on this browser");
|
||||||
|
@ -72,10 +78,16 @@ export async function checkConsistency() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (indexedDB) {
|
if (indexedDB) {
|
||||||
|
try {
|
||||||
dataInCryptoStore = await Matrix.IndexedDBCryptoStore.exists(
|
dataInCryptoStore = await Matrix.IndexedDBCryptoStore.exists(
|
||||||
indexedDB, CRYPTO_STORE_NAME,
|
indexedDB, CRYPTO_STORE_NAME,
|
||||||
);
|
);
|
||||||
log(`Crypto store contains data? ${dataInCryptoStore}`);
|
log(`Crypto store contains data? ${dataInCryptoStore}`);
|
||||||
|
} catch (e) {
|
||||||
|
healthy = false;
|
||||||
|
error("Crypto store inaccessible", e);
|
||||||
|
track("Crypto store inaccessible");
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
healthy = false;
|
healthy = false;
|
||||||
error("Crypto store cannot be used on this browser");
|
error("Crypto store cannot be used on this browser");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue