mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 21:33:21 +00:00
[Glitch] Fix reblogged statuses being erroneously shown as filtered
Port 3c24f19afe
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
a15fe32e61
commit
bbafe28fbc
|
@ -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…
Reference in a new issue