From: Eugen Rochko Date: Mon, 15 Jan 2018 17:42:15 +0000 (+0100) Subject: Fix #6128 - Display unfollow button even if account moved (#6258) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=3987bd18a4bfaee49ea9a3439fc51610aeca6c2c;p=mastodon.git Fix #6128 - Display unfollow button even if account moved (#6258) --- 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} ); - } else if (!account.get('moved')) { + } else if (!account.get('moved') || following) { buttons = ; } } 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 = ''; }