Merge pull request #1524 from matrix-org/luke/groups-store-true-global

Make GroupStoreCache global for cross-package access
This commit is contained in:
David Baker 2017-10-24 11:05:14 +01:00 committed by GitHub
commit f29f627c31

View file

@ -33,8 +33,7 @@ class GroupStoreCache {
} }
} }
let singletonGroupStoreCache = null; if (global.singletonGroupStoreCache === undefined) {
if (!singletonGroupStoreCache) { global.singletonGroupStoreCache = new GroupStoreCache();
singletonGroupStoreCache = new GroupStoreCache();
} }
module.exports = singletonGroupStoreCache; export default global.singletonGroupStoreCache;