Commit 1c1640f5 authored by 0xd9a's avatar 0xd9a
Browse files

Fix: Wrong following and followers count in profiles

parent ed386510
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
                    }
                }