]> cat aescling's git repositories - mastodon.git/commitdiff
never filter own posts from timeline
authorash lea <example@thisismyactual.email>
Sat, 20 Jun 2020 03:01:25 +0000 (20:01 -0700)
committerThibG <thib@sitedethib.com>
Tue, 23 Jun 2020 14:09:36 +0000 (16:09 +0200)
app/javascript/flavours/glitch/features/ui/containers/status_list_container.js

index c01d0e5bce6f3b842ed2457a31b689563681a802..7b998b8c2ab78469f5af86ce8c01a527d979b36a 100644 (file)
@@ -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;
     }