never filter own posts from timeline

th-downstream
ash lea 4 years ago committed by ThibG
parent 86106b90c9
commit 3489cb87b7

@ -33,6 +33,8 @@ const makeGetStatusIds = (pending = false) => createSelector([
const statusForId = statuses.get(id);
let showStatus = true;
if (statusForId.get('account') === me) return true;
if (columnSettings.getIn(['shows', 'reblog']) === false) {
showStatus = showStatus && statusForId.get('reblog') === null;
}

Loading…
Cancel
Save