diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-01-15 18:42:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-15 18:42:15 +0100 |
commit | 3987bd18a4bfaee49ea9a3439fc51610aeca6c2c (patch) | |
tree | 617f6d0958c04e07e95f90d4ab856e2bc0effe7f | |
parent | 74c1c9ec01addc7474d74712f76fb6d6d5eecdf7 (diff) |
Fix #6128 - Display unfollow button even if account moved (#6258)
-rw-r--r-- | app/javascript/mastodon/components/account.js | 2 | ||||
-rw-r--r-- | app/javascript/mastodon/features/account/components/header.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/components/account.js b/app/javascript/mastodon/components/account.js index 81459731c..a3642e61d 100644 --- a/app/javascript/mastodon/components/account.js +++ b/app/javascript/mastodon/components/account.js @@ -93,7 +93,7 @@ export default class Account extends ImmutablePureComponent { {hidingNotificationsButton} </Fragment> ); - } else if (!account.get('moved')) { + } else if (!account.get('moved') || following) { buttons = <IconButton icon={following ? 'user-times' : 'user-plus'} title={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.handleFollow} active={following} />; } } diff --git a/app/javascript/mastodon/features/account/components/header.js b/app/javascript/mastodon/features/account/components/header.js index b2399ae9b..0225e7308 100644 --- a/app/javascript/mastodon/features/account/components/header.js +++ b/app/javascript/mastodon/features/account/components/header.js @@ -103,7 +103,7 @@ export default class Header extends ImmutablePureComponent { } } - if (account.get('moved')) { + if (account.get('moved') && !account.getIn(['relationship', 'following'])) { actionBtn = ''; } |