You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hide blocking accounts from blocked users (mastodon#10442)
* Revert "Add indication that you have been blocked in web UI (mastodon#10420)"
This reverts commit bd02ec6.
* Revert "Add `blocked_by` relationship to the REST API (mastodon#10373)"
This reverts commit 9745de8.
* Hide blocking accounts from search results
* Filter blocking accouts from account followers
* Filter blocking accouts from account's following accounts
* Filter blocking accounts from “reblogged by” and “favourited by” lists
* Remove blocking account from URL search
* Return 410 on trying to fetch user data from a user who blocked us
* Return 410 in /api/v1/account/statuses for suspended or blocking accounts
* Fix status filtering when performing URL search
* Restore some React improvements
Restore some cleanup from bd02ec6
* Refactor by adding `without_blocking` scope
@@ -62,7 +60,7 @@ class Followers extends ImmutablePureComponent {
62
60
);
63
61
}
64
62
65
-
constemptyMessage=blockedBy ? <FormattedMessageid='empty_column.account_timeline_blocked'defaultMessage='You are blocked'/> : <FormattedMessageid='account.followers.empty'defaultMessage='No one follows this user yet.'/>;
63
+
constemptyMessage=<FormattedMessageid='account.followers.empty'defaultMessage='No one follows this user yet.'/>;
66
64
67
65
return(
68
66
<Column>
@@ -77,7 +75,7 @@ class Followers extends ImmutablePureComponent {
0 commit comments