diff options
author | ThibG <thib@sitedethib.com> | 2020-06-23 16:01:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 16:01:34 +0200 |
commit | 791402af7c33da5c8f60200b389701400f73fde8 (patch) | |
tree | 9c2140c171f0fd6c7b009e3ec5d4fd1b78472ce8 /app | |
parent | 419ad6248beb192f34ef581306138c3ff0d600a9 (diff) |
never filter own posts from timeline (#14128)
Signed-off-by: Thibaut Girka <thib@sitedethib.com> Co-authored-by: ash lea <example@thisismyactual.email>
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/ui/containers/status_list_container.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/ui/containers/status_list_container.js b/app/javascript/mastodon/features/ui/containers/status_list_container.js index 9f6cbf988..4ce4ac6c8 100644 --- a/app/javascript/mastodon/features/ui/containers/status_list_container.js +++ b/app/javascript/mastodon/features/ui/containers/status_list_container.js @@ -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; } |