Skip to content

Commit

Permalink
Fix hide reblogs (regression from mastodon#5887) (mastodon#5909)
Browse files Browse the repository at this point in the history
  • Loading branch information
ykzts authored and Gargron committed Dec 7, 2017
1 parent 9302369 commit 432761f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -68,7 +68,7 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
},

onReblogToggle (account) {
if (account.getIn(['relationship', 'show_reblogs'])) {
if (account.getIn(['relationship', 'showing_reblogs'])) {
dispatch(followAccount(account.get('id'), false));
} else {
dispatch(followAccount(account.get('id'), true));
Expand Down

0 comments on commit 432761f

Please sign in to comment.