about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/ui
diff options
context:
space:
mode:
authorash lea <example@thisismyactual.email>2020-06-19 20:01:25 -0700
committerThibG <thib@sitedethib.com>2020-06-23 16:09:36 +0200
commitc1377049c62aabce460d7c6e89737ee74b40eff3 (patch)
treeaa115c667360af98239a8c7c34def9951bfa678e /app/javascript/flavours/glitch/features/ui
parentc7da2cc5a1821e589e7241aec21d8bb426722c2a (diff)
never filter own posts from timeline
Diffstat (limited to 'app/javascript/flavours/glitch/features/ui')
-rw-r--r--app/javascript/flavours/glitch/features/ui/containers/status_list_container.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/ui/containers/status_list_container.js b/app/javascript/flavours/glitch/features/ui/containers/status_list_container.js
index c01d0e5bc..7b998b8c2 100644
--- a/app/javascript/flavours/glitch/features/ui/containers/status_list_container.js
+++ b/app/javascript/flavours/glitch/features/ui/containers/status_list_container.js
@@ -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;
     }