Browse Source

never filter own posts from timeline (#14128)

Signed-off-by: Thibaut Girka <thib@sitedethib.com>

Co-authored-by: ash lea <example@thisismyactual.email>
master
ThibG 3 years ago
committed by GitHub
parent
commit
791402af7c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      app/javascript/mastodon/features/ui/containers/status_list_container.js

+ 2
- 0
app/javascript/mastodon/features/ui/containers/status_list_container.js View File

@ -17,6 +17,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