Merge pull request #2812 from jryans/memory-store-name

Change to new consistent name for `MemoryStore`
pull/21833/head
J. Ryan Stinnett 2019-03-21 18:33:19 +00:00 committed by GitHub
commit ed72352636
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class MatrixClientPeg {
} catch (err) {
if (dbType === 'indexeddb') {
console.error('Error starting matrixclient store - falling back to memory store', err);
this.matrixClient.store = new Matrix.MatrixInMemoryStore({
this.matrixClient.store = new Matrix.MemoryStore({
localStorage: global.localStorage,
});
} else {