Просмотр исходного кода

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

master
Yamagishi Kazutoshi 6 лет назад
committed by Eugen Rochko
Родитель
Сommit
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));


Загрузка…
Отмена
Сохранить