From: Yamagishi Kazutoshi Date: Thu, 7 Dec 2017 02:37:31 +0000 (+0900) Subject: Fix hide reblogs (regression from #5887) (#5909) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=432761f37574b4e4159283f595e6c094b7bde449;p=mastodon.git Fix hide reblogs (regression from #5887) (#5909) --- diff --git a/app/javascript/mastodon/features/account_timeline/containers/header_container.js b/app/javascript/mastodon/features/account_timeline/containers/header_container.js index 775610032..b5e0e9a3f 100644 --- 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));