parent
85a6631709
commit
e3c71cb3e4
14 changed files with 61 additions and 36 deletions
|
@ -3,7 +3,7 @@ import { createSelector } from 'reselect';
|
|||
|
||||
import { toServerSideType } from 'mastodon/utils/filters';
|
||||
|
||||
import { me, hideBlockingQuote } from '../initial_state';
|
||||
import { me, isHideItem } from '../initial_state';
|
||||
|
||||
export { makeGetAccount } from "./accounts";
|
||||
|
||||
|
@ -40,7 +40,7 @@ export const makeGetStatus = () => {
|
|||
statusReblog = null;
|
||||
}
|
||||
|
||||
if (hideBlockingQuote && (statusReblog || statusBase).getIn(['quote', 'quote_muted'])) {
|
||||
if (isHideItem('blocking_quote') && (statusReblog || statusBase).getIn(['quote', 'quote_muted'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue