Delete database on logout. DI a SyncAccumulator. Log uncaught errors
This commit is contained in:
parent
300cd962e5
commit
407bcf1bb9
2 changed files with 14 additions and 1 deletions
|
@ -79,6 +79,7 @@ class MatrixClientPeg {
|
|||
console.log("Loading history from IndexedDB.");
|
||||
promise = this.matrixClient.store.startup();
|
||||
}
|
||||
promise.catch((err) => { console.error(err); });
|
||||
|
||||
promise.finally(() => {
|
||||
this.get().startClient(opts);
|
||||
|
@ -124,7 +125,8 @@ class MatrixClientPeg {
|
|||
}
|
||||
if (window.indexedDB && localStorage) {
|
||||
opts.store = new Matrix.IndexedDBStore(
|
||||
new Matrix.IndexedDBStoreBackend(window.indexedDB), {
|
||||
new Matrix.IndexedDBStoreBackend(window.indexedDB),
|
||||
new Matrix.SyncAccumulator(), {
|
||||
localStorage: localStorage,
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue