Преглед изворни кода

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

master
Yamagishi Kazutoshi пре 6 година
committed by Eugen Rochko
родитељ
комит
432761f375
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      app/javascript/mastodon/features/account_timeline/containers/header_container.js

+ 1
- 1
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));


Loading…
Откажи
Сачувај