Fix: Wrong following and followers count in profiles

This commit is contained in:
0xd9a 2022-06-26 14:18:33 +05:30
parent ed38651076
commit 1c1640f53c
1 changed files with 2 additions and 2 deletions

View File

@ -262,10 +262,10 @@ public class ProfileActivity extends BaseActivity {
tab.setText(getString(R.string.status_cnt, Helper.withSuffix(account.statuses_count)));
break;
case 1:
tab.setText(getString(R.string.following_cnt, Helper.withSuffix(account.statuses_count)));
tab.setText(getString(R.string.following_cnt, Helper.withSuffix(account.following_count)));
break;
case 2:
tab.setText(getString(R.string.followers_cnt, Helper.withSuffix(account.statuses_count)));
tab.setText(getString(R.string.followers_cnt, Helper.withSuffix(account.followers_count)));
break;
}
}