about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-06-23 16:01:34 +0200
committerGitHub <noreply@github.com>2020-06-23 16:01:34 +0200
commit791402af7c33da5c8f60200b389701400f73fde8 (patch)
tree9c2140c171f0fd6c7b009e3ec5d4fd1b78472ce8 /app
parent419ad6248beb192f34ef581306138c3ff0d600a9 (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.js2
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;
     }