mirror of https://github.com/vector-im/riot-web
Change the name of the database
Full name is now `matrix-js-sdk:riot-web-sync`.pull/21833/head
parent
05d242cb5c
commit
658c34abf3
|
@ -122,8 +122,11 @@ class MatrixClientPeg {
|
||||||
opts.sessionStore = new Matrix.WebStorageSessionStore(localStorage);
|
opts.sessionStore = new Matrix.WebStorageSessionStore(localStorage);
|
||||||
}
|
}
|
||||||
if (window.indexedDB && localStorage) {
|
if (window.indexedDB && localStorage) {
|
||||||
|
// FIXME: bodge to remove old database. Remove this after a few weeks.
|
||||||
|
window.indexedDB.deleteDatabase("matrix-js-sdk:default");
|
||||||
|
|
||||||
opts.store = new Matrix.IndexedDBStore(
|
opts.store = new Matrix.IndexedDBStore(
|
||||||
new Matrix.IndexedDBStoreBackend(window.indexedDB),
|
new Matrix.IndexedDBStoreBackend(window.indexedDB, "riot-web-sync"),
|
||||||
new Matrix.SyncAccumulator(), {
|
new Matrix.SyncAccumulator(), {
|
||||||
localStorage: localStorage,
|
localStorage: localStorage,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue