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
* Revert "Fix filtering of favourited_by, reblogged_by, followers and following (mastodon#10447)"
This reverts commit 1205440.
* Revert "Hide blocking accounts from blocked users (mastodon#10442)"
This reverts commit 62bafa2.
* Improve blocked view of profiles
- Change "You are blocked" to "Profile unavailable"
- Hide following/followers in API when blocked
- Disable follow button and show "Profile unavailable" on public profile as well
@@ -60,7 +62,7 @@ class Followers extends ImmutablePureComponent {
60
62
);
61
63
}
62
64
63
-
constemptyMessage=<FormattedMessageid='account.followers.empty'defaultMessage='No one follows this user yet.'/>;
65
+
constemptyMessage=blockedBy ? <FormattedMessageid='empty_column.account_unavailable'defaultMessage='Profile unavailable'/> : <FormattedMessageid='account.followers.empty'defaultMessage='No one follows this user yet.'/>;
64
66
65
67
return(
66
68
<Column>
@@ -75,7 +77,7 @@ class Followers extends ImmutablePureComponent {
0 commit comments