Browse Source

Fix local timeline showing unread status of TWKN timeline

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
e2209e1104
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/assets/javascripts/components/features/community_timeline/index.jsx

+ 1
- 1
app/assets/javascripts/components/features/community_timeline/index.jsx View File

@ -16,7 +16,7 @@ const messages = defineMessages({
});
const mapStateToProps = state => ({
hasUnread: state.getIn(['timelines', 'public', 'unread']) > 0,
hasUnread: state.getIn(['timelines', 'community', 'unread']) > 0,
accessToken: state.getIn(['meta', 'access_token'])
});

Loading…
Cancel
Save