Simplify filtering condition

master
Thibaut Girka 4 years ago committed by ThibG
parent c1377049c6
commit 5d12b63e79
  1. 2
      app/javascript/flavours/glitch/features/ui/containers/status_list_container.js

@ -47,7 +47,7 @@ const makeGetStatusIds = (pending = false) => createSelector([
showStatus = showStatus && statusForId.get('visibility') !== 'direct';
}
if (showStatus && regex && statusForId.get('account') !== me) {
if (showStatus && regex) {
const searchIndex = statusForId.get('reblog') ? statuses.getIn([statusForId.get('reblog'), 'search_index']) : statusForId.get('search_index');
showStatus = !regex.test(searchIndex);
}

Loading…
Cancel
Save