Fix blocking/unblocking users from status dropdown menu (#12535)
Fixes #12511
This commit is contained in:
parent
34a810c9a7
commit
272bc36227
2 changed files with 4 additions and 4 deletions
|
@ -173,9 +173,9 @@ class StatusActionBar extends ImmutablePureComponent {
|
|||
const account = status.get('account');
|
||||
|
||||
if (relationship && relationship.get('blocking')) {
|
||||
onBlock(status);
|
||||
} else {
|
||||
onUnblock(account);
|
||||
} else {
|
||||
onBlock(status);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -120,9 +120,9 @@ class ActionBar extends React.PureComponent {
|
|||
const account = status.get('account');
|
||||
|
||||
if (relationship && relationship.get('blocking')) {
|
||||
onBlock(status);
|
||||
} else {
|
||||
onUnblock(account);
|
||||
} else {
|
||||
onBlock(status);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue