Fix some minor bug in SubsMap

This commit is contained in:
vjrj 2018-02-16 20:40:17 +01:00
parent ee427758c2
commit eee1abf3ed

View file

@ -168,7 +168,7 @@ export default translate([], { wait: true })(withTracker(() => {
const userSubsBounds = SiteSettings.findOne({ name: 'subs-public-union-bounds' });
return {
userSubs: userSubs ? userSubs.value : null,
userSubsBounds: userSubs ? userSubsBounds.value : null,
userSubsBounds: userSubsBounds ? userSubsBounds.value : null,
subsready: settingsSubs.ready()
};
})(SubscriptionsMap));