[Glitch] Fix reblogged statuses being erroneously shown as filtered

Port 3c24f19afe to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
local
Claire 2 years ago
parent a15fe32e61
commit bbafe28fbc
  1. 2
      app/javascript/flavours/glitch/components/status.js
  2. 4
      app/javascript/flavours/glitch/selectors/index.js

@ -557,7 +557,7 @@ class Status extends ImmutablePureComponent {
);
}
const matchedFilters = status.get('filtered') || status.getIn(['reblog', 'filtered']);
const matchedFilters = status.get('matched_filters');
if (this.state.forceFilter === undefined ? matchedFilters : this.state.forceFilter) {
const minHandlers = this.props.muted ? {} : {
moveUp: this.handleHotkeyMoveUp,

@ -100,7 +100,7 @@ export const makeGetStatus = () => {
if (statusReblog) {
statusReblog = statusReblog.set('account', accountReblog);
statusReblog = statusReblog.set('filtered', filtered);
statusReblog = statusReblog.set('matched_filters', filtered);
} else {
statusReblog = null;
}
@ -108,7 +108,7 @@ export const makeGetStatus = () => {
return statusBase.withMutations(map => {
map.set('reblog', statusReblog);
map.set('account', accountBase);
map.set('filtered', filtered);
map.set('matched_filters', filtered);
});
},
);

Loading…
Cancel
Save