]> cat aescling's git repositories - mastodon.git/commitdiff
never filter own posts from timeline (#14128)
authorThibG <thib@sitedethib.com>
Tue, 23 Jun 2020 14:01:34 +0000 (16:01 +0200)
committerGitHub <noreply@github.com>
Tue, 23 Jun 2020 14:01:34 +0000 (16:01 +0200)
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Co-authored-by: ash lea <example@thisismyactual.email>
app/javascript/mastodon/features/ui/containers/status_list_container.js

index 9f6cbf988ef6fd16de6f255c58d703669f21e5ba..4ce4ac6c8c94c4501e95f6e856d3d867861978fd 100644 (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;
     }