瀏覽代碼

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…
取消
儲存