about summary refs log tree commit diff
path: root/app/javascript/mastodon/selectors/index.js
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-06-30 09:51:55 +0200
committerGitHub <noreply@github.com>2022-06-30 09:51:55 +0200
commit3c24f19afedc2169a7a343c5af4a8f892d863f0b (patch)
tree8e2360a710c682eb29614eba7dbb300717ed01a1 /app/javascript/mastodon/selectors/index.js
parentfb552dde2c733c372c0b235397e4106f2e4480bb (diff)
Fix reblogged statuses being erroneously shown as filtered (#18744)
Diffstat (limited to 'app/javascript/mastodon/selectors/index.js')
-rw-r--r--app/javascript/mastodon/selectors/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/selectors/index.js b/app/javascript/mastodon/selectors/index.js
index 6aeb8b7bd..bf1db4bb4 100644
--- a/app/javascript/mastodon/selectors/index.js
+++ b/app/javascript/mastodon/selectors/index.js
@@ -106,7 +106,7 @@ export const makeGetStatus = () => {
       return statusBase.withMutations(map => {
         map.set('reblog', statusReblog);
         map.set('account', accountBase);
-        map.set('filtered', filtered);
+        map.set('matched_filters', filtered);
       });
     },
   );