Fix follow label on Pleroma

This commit is contained in:
stom79 2019-01-27 17:20:15 +01:00
parent 68108c970e
commit 0e727ddde9
1 changed files with 1 additions and 1 deletions

View File

@ -815,7 +815,7 @@ public class ShowAccountActivity extends BaseActivity implements OnPostActionInt
//The authenticated account is followed by the account
if( relationship != null && relationship.isFollowed_by()){
if( relationship != null && relationship.isFollowed_by() && !accountId.equals(userId)){
TextView account_followed_by = findViewById(R.id.account_followed_by);
account_followed_by.setVisibility(View.VISIBLE);
}