[Glitch] Display unfollow button even if account moved

Backport 3987bd18a4 to glitch-soc
signup-info-prompt
Thibaut Girka 2018-03-29 14:46:00 +02:00
parent a59c146bf8
commit b5948044b3
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,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} />;
}
}

View File

@ -76,7 +76,7 @@ export default class Header extends ImmutablePureComponent {
}
}
if (account.get('moved')) {
if (account.get('moved') && !account.getIn(['relationship', 'following'])) {
actionBtn = '';
}