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 (!singletonGroupStoreCache) {
singletonGroupStoreCache = new GroupStoreCache();
if (global.singletonGroupStoreCache === undefined) {
global.singletonGroupStoreCache = new GroupStoreCache();
}
module.exports = singletonGroupStoreCache;
export default global.singletonGroupStoreCache;