1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Update for new IndexedDBStore interface

This commit is contained in:
David Baker
2017-03-31 14:55:33 +01:00
parent 11a1c8099c
commit 9c4614e7ff

View File

@@ -125,12 +125,11 @@ class MatrixClientPeg {
// FIXME: bodge to remove old database. Remove this after a few weeks. // FIXME: bodge to remove old database. Remove this after a few weeks.
window.indexedDB.deleteDatabase("matrix-js-sdk:default"); window.indexedDB.deleteDatabase("matrix-js-sdk:default");
opts.store = new Matrix.IndexedDBStore( opts.store = new Matrix.IndexedDBStore({
new Matrix.IndexedDBStoreBackend(window.indexedDB, "riot-web-sync"), indexedDB: window.indexedDB,
new Matrix.SyncAccumulator(), { dbName: "riot-web-sync",
localStorage: localStorage, localStorage: localStorage,
} });
);
} }
this.matrixClient = Matrix.createClient(opts); this.matrixClient = Matrix.createClient(opts);