mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 23:58:06 +01:00
never filter own posts from timeline
This commit is contained in:
parent
c7da2cc5a1
commit
c1377049c6
1 changed files with 2 additions and 0 deletions
|
@ -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…
Reference in a new issue