Fix reblogged statuses being erroneously shown as filtered (#18744)
This commit is contained in:
		@@ -338,7 +338,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) {
 | 
					    if (this.state.forceFilter === undefined ? matchedFilters : this.state.forceFilter) {
 | 
				
			||||||
      const minHandlers = this.props.muted ? {} : {
 | 
					      const minHandlers = this.props.muted ? {} : {
 | 
				
			||||||
        moveUp: this.handleHotkeyMoveUp,
 | 
					        moveUp: this.handleHotkeyMoveUp,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -106,7 +106,7 @@ export const makeGetStatus = () => {
 | 
				
			|||||||
      return statusBase.withMutations(map => {
 | 
					      return statusBase.withMutations(map => {
 | 
				
			||||||
        map.set('reblog', statusReblog);
 | 
					        map.set('reblog', statusReblog);
 | 
				
			||||||
        map.set('account', accountBase);
 | 
					        map.set('account', accountBase);
 | 
				
			||||||
        map.set('filtered', filtered);
 | 
					        map.set('matched_filters', filtered);
 | 
				
			||||||
      });
 | 
					      });
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user