Sfoglia il codice sorgente

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

master
Yamagishi Kazutoshi 6 anni fa
committed by Eugen Rochko
parent
commit
432761f375
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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 Vedi File

@@ -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));


Caricamento…
Annulla
Salva