Fix hide reblogs (regression from #5887) (#5909)

main
Yamagishi Kazutoshi 7 years ago committed by Eugen Rochko
parent 9302369aa5
commit 432761f375

@ -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));

Loading…
Cancel
Save