Skip to content

Commit

Permalink
Fix hide reblogs in glitch frontend (mastodon#5909)
Browse files Browse the repository at this point in the history
This applies 432761f to the glitch copy
of the Mastodon frontend.
  • Loading branch information
hannahwhy committed Dec 7, 2017
1 parent ddb61de commit 67d625c
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 67d625c

Please sign in to comment.