commit: 432761f37574b4e4159283f595e6c094b7bde449
parent: 9302369aa5648bab42a2cd6078607d7cbaa92458
Author: Yamagishi Kazutoshi <ykzts@desire.sh>
Date: Thu, 7 Dec 2017 11:37:31 +0900
Fix hide reblogs (regression from #5887) (#5909)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/javascript/mastodon/features/account_timeline/containers/header_container.js b/app/javascript/mastodon/features/account_timeline/containers/header_container.js
@@ -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));